48 lines
1,012 B
Nix
48 lines
1,012 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/games.nix"
|
|
"${system}/hardware/nvidia.nix"
|
|
|
|
"${system}/services/logind.nix"
|
|
"${system}/services/greetd.nix"
|
|
|
|
"${system}/programs/niri"
|
|
|
|
"${system}/services/documentation.nix"
|
|
];
|
|
|
|
home-manager = {
|
|
users.nezia.imports = [
|
|
"${home}"
|
|
"${home}/services/udiskie.nix"
|
|
"${home}/programs/games"
|
|
|
|
"${home}/programs/niri"
|
|
"${home}/programs/waybar"
|
|
"${home}/services/swaync"
|
|
"${home}/programs/fuzzel.nix"
|
|
"${home}/programs/swaybg.nix"
|
|
"${home}/programs/swaylock.nix"
|
|
"${home}/programs/swayidle.nix"
|
|
|
|
"${home}/terminal/emulators/foot.nix"
|
|
];
|
|
extraSpecialArgs = specialArgs;
|
|
};
|
|
|
|
networking.hostName = "solaire";
|
|
environment.variables.FLAKE = "/home/nezia/.dotfiles";
|
|
}
|