so much organization

This commit is contained in:
mjallen18
2025-06-29 14:50:34 -05:00
parent ca155505be
commit 532c97cf00
58 changed files with 354 additions and 992 deletions

20
modules/root-user/default.nix Executable file
View File

@@ -0,0 +1,20 @@
{ ... }:
let
shellAliases = {
update-boot = "nixos-rebuild boot --max-jobs 10";
update-switch = "nixos-rebuild switch --max-jobs 10";
};
in
{
imports = [
../home/defaults.nix
../home/git.nix
../home/shell.nix
];
home.username = "root";
programs = {
zsh.shellAliases = shellAliases;
};
}