flocon/hosts/solaire/default.nix

30 lines
576 B
Nix
Raw Normal View History

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