flocon/hosts/solaire/default.nix

66 lines
1.3 KiB
Nix
Raw Normal View History

{
inputs,
specialArgs,
...
}: let
2024-12-18 09:14:06 +00:00
nixos = "${inputs.self}/config/nixos";
hm = "${inputs.self}/config/home-manager";
in {
2024-12-18 09:03:08 +00:00
local.systemVars = {
hostName = "solaire";
username = "nezia";
};
local.homeVars = {
fullName = "Anthony Rodriguez";
email = "anthony@nezia.dev";
};
2024-12-18 09:14:06 +00:00
2024-09-24 13:09:36 +00:00
imports = [
./hardware-configuration.nix
./modules
2024-12-18 09:14:06 +00:00
nixos
"${nixos}/hardware/uni-sync.nix"
2024-12-18 09:14:06 +00:00
"${nixos}/programs/games.nix"
"${nixos}/hardware/nvidia.nix"
2024-11-17 14:04:22 +00:00
2024-12-18 09:14:06 +00:00
"${nixos}/services/logind.nix"
"${nixos}/services/greetd.nix"
2024-11-27 21:45:24 +00:00
2024-12-18 09:14:06 +00:00
"${nixos}/programs/hyprland.nix"
"${nixos}/services/gnome.nix"
2024-11-27 21:45:24 +00:00
2024-12-18 09:14:06 +00:00
"${nixos}/services/documentation.nix"
2024-12-05 14:58:37 +00:00
2024-12-18 09:14:06 +00:00
"${nixos}/services/flatpak.nix"
2024-08-25 19:58:12 +00:00
];
home-manager = {
users.nezia.imports = [
2024-12-18 09:14:06 +00:00
hm
"${hm}/services/udiskie.nix"
"${hm}/programs/games"
2024-12-18 09:14:06 +00:00
"${hm}/programs/waybar"
"${hm}/programs/fuzzel.nix"
"${hm}/programs/hypr"
2024-12-18 09:14:06 +00:00
"${hm}/services/swaync"
"${hm}/programs/swaybg.nix"
"${hm}/programs/swaylock.nix"
2024-11-27 21:45:24 +00:00
2024-12-18 09:14:06 +00:00
"${hm}/terminal/emulators/foot.nix"
2024-12-05 14:58:37 +00:00
2024-12-18 09:14:06 +00:00
"${hm}/services/flatpak.nix"
"${hm}/services/syncthing.nix"
2024-12-06 16:01:45 +00:00
2024-12-18 09:14:06 +00:00
"${hm}/programs/editors/neovim.nix"
];
extraSpecialArgs = specialArgs;
};
environment.variables.FLAKE = "/home/nezia/.dotfiles";
2024-08-25 19:58:12 +00:00
}