Release Ver 1.2.0
This commit is contained in:
parent
7f73899c91
commit
89600ebb06
25 changed files with 1862 additions and 57 deletions
56
Documentation/Legacy/example-home.nix
Normal file
56
Documentation/Legacy/example-home.nix
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
{ config, nixDirectory, username, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
|
||||
################################################################
|
||||
# Module Imports
|
||||
################################################################
|
||||
|
||||
imports = [
|
||||
# Other Home Manager Modules
|
||||
# ......
|
||||
inputs.nyx.homeManagerModules.default
|
||||
];
|
||||
|
||||
################################################################
|
||||
# Nyx Tools Configuration
|
||||
################################################################
|
||||
|
||||
nyx = {
|
||||
|
||||
enable = true;
|
||||
inherit username nixDirectory;
|
||||
logDir = "/home/${username}/.nyx/logs";
|
||||
autoPush = false;
|
||||
|
||||
nyx-rebuild = {
|
||||
enable = true;
|
||||
editor = "nvim";
|
||||
formatter = "alejandra";
|
||||
enableAlias = false;
|
||||
startEditor = false;
|
||||
};
|
||||
|
||||
nyx-cleanup = {
|
||||
enable = true;
|
||||
keepGenerations = 5;
|
||||
enableAlias = false;
|
||||
};
|
||||
|
||||
nyx-tool = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
nyx-tui = {
|
||||
enable = true;
|
||||
enableAlias = false;
|
||||
};
|
||||
}
|
||||
################################################################
|
||||
# Basic Home Manager Setup
|
||||
################################################################
|
||||
|
||||
home.username = username;
|
||||
home.homeDirectory = "/home/${username}";
|
||||
home.stateVersion = "25.05";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue