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