Anthony Rodriguez
73930f02ff
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.
34 lines
645 B
Nix
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";
|
|
}
|