flocon/hosts/solaire/default.nix

33 lines
580 B
Nix
Raw Permalink Normal View History

{
self,
specialArgs,
...
}: let
mod = "${self}/system";
in {
2024-09-24 13:09:36 +00:00
imports = [
./hardware-configuration.nix
./modules
"${mod}"
"${mod}/hardware/uni-sync.nix"
"${mod}/programs/gnome.nix"
"${mod}/programs/games.nix"
"${mod}/hardware/nvidia.nix"
2024-08-25 19:58:12 +00:00
];
home-manager = {
users.nezia.imports = [
"${self}/home"
"${self}/home/programs/games"
"${self}/home/terminal/emulators/foot.nix"
];
extraSpecialArgs = specialArgs;
};
networking.hostName = "solaire";
environment.variables.FLAKE = "/home/nezia/.dotfiles";
2024-08-25 19:58:12 +00:00
}