homemanger for root
This commit is contained in:
parent
b470af6d33
commit
a9890846b2
|
@ -3,6 +3,7 @@
|
|||
extraSpecialArgs = {inherit inputs;};
|
||||
users = {
|
||||
"joy" = import ./home.nix;
|
||||
"root" = import ./root.nix;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
3
modules/programs/fastfetch/default.nix
Normal file
3
modules/programs/fastfetch/default.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
programs.fastfetch.enable = true;
|
||||
}
|
|
@ -10,6 +10,7 @@
|
|||
./helix
|
||||
./newsboat
|
||||
./zoxide
|
||||
./fastfetch
|
||||
./misc
|
||||
];
|
||||
}
|
||||
|
|
|
@ -9,12 +9,10 @@
|
|||
ffmpeg
|
||||
lm_sensors
|
||||
alejandra
|
||||
tree
|
||||
zip
|
||||
unzip
|
||||
yt-dlp
|
||||
wget
|
||||
fastfetch
|
||||
cmatrix
|
||||
cava
|
||||
nitch
|
||||
|
|
8
modules/programs/root.nix
Normal file
8
modules/programs/root.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
imports = [
|
||||
./zsh
|
||||
./helix
|
||||
./zoxide
|
||||
./misc
|
||||
];
|
||||
}
|
|
@ -9,5 +9,13 @@
|
|||
stateVersion = "23.11";
|
||||
};
|
||||
};
|
||||
users.root = {
|
||||
programs.home-manager.enable = true;
|
||||
home = {
|
||||
username = "root";
|
||||
homeDirectory = "/root";
|
||||
stateVersion = "23.11";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue