mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
29 lines
453 B
Nix
29 lines
453 B
Nix
{
|
|
settings,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = let
|
|
modules = [
|
|
"theme"
|
|
];
|
|
in
|
|
lib.lists.forEach modules (
|
|
m:
|
|
./. + ("/" + m + ".nix")
|
|
)
|
|
++ [
|
|
./neovim
|
|
];
|
|
home = {
|
|
username = "root";
|
|
homeDirectory = "/root";
|
|
stateVersion = settings.version;
|
|
file = {
|
|
".config/neofetch/config.conf" = {
|
|
source = ./config/neofetch/config.conf;
|
|
recursive = false;
|
|
};
|
|
};
|
|
};
|
|
}
|