flocon/hosts/solaire/default.nix

49 lines
1,012 B
Nix
Raw Normal View History

{
inputs,
specialArgs,
...
}: let
system = "${inputs.self}/system";
home = "${inputs.self}/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/games.nix"
"${system}/hardware/nvidia.nix"
2024-11-17 14:04:22 +00:00
2024-11-27 21:45:24 +00:00
"${system}/services/logind.nix"
"${system}/services/greetd.nix"
"${system}/programs/niri"
2024-11-27 16:44:54 +00:00
"${system}/services/documentation.nix"
2024-08-25 19:58:12 +00:00
];
home-manager = {
users.nezia.imports = [
2024-11-27 21:45:24 +00:00
"${home}"
"${home}/services/udiskie.nix"
2024-11-06 15:25:57 +00:00
"${home}/programs/games"
2024-11-27 21:45:24 +00:00
"${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"
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
}