flocon/hosts/solaire/default.nix
Anthony Rodriguez d0c4c6da05
treewide: fix deploy issues
Using absolute path imports is apparently a horrible idea since that
just messes up the store, and will bring a lot of issues since that
copies it to the store separately.
2024-11-15 19:49:20 +01:00

34 lines
645 B
Nix

{
inputs,
specialArgs,
...
}: let
system = "${inputs.self}/system";
home = "${inputs.self}/home";
in {
imports = [
./hardware-configuration.nix
./modules
system
"${system}/hardware/uni-sync.nix"
"${system}/programs/gnome.nix"
"${system}/programs/games.nix"
"${system}/hardware/nvidia.nix"
];
home-manager = {
users.nezia.imports = [
home
"${home}/programs/games"
"${home}/terminal/emulators/foot.nix"
"${home}/programs/gnome"
];
extraSpecialArgs = specialArgs;
};
networking.hostName = "solaire";
environment.variables.FLAKE = "/home/nezia/.dotfiles";
}