2024-11-15 18:44:59 +00:00
|
|
|
{
|
|
|
|
inputs,
|
|
|
|
specialArgs,
|
|
|
|
...
|
|
|
|
}: let
|
2024-12-18 09:14:06 +00:00
|
|
|
nixos = "${inputs.self}/config/nixos";
|
|
|
|
hm = "${inputs.self}/config/home-manager";
|
2024-10-21 14:37:58 +00:00
|
|
|
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
|
2024-10-22 13:01:05 +00:00
|
|
|
./modules
|
2024-10-21 14:37:58 +00:00
|
|
|
|
2024-12-18 09:14:06 +00:00
|
|
|
nixos
|
|
|
|
"${nixos}/hardware/uni-sync.nix"
|
2024-10-21 14:37:58 +00:00
|
|
|
|
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
|
|
|
];
|
2024-10-21 14:37:58 +00:00
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
users.nezia.imports = [
|
2024-12-18 09:14:06 +00:00
|
|
|
hm
|
|
|
|
"${hm}/services/udiskie.nix"
|
|
|
|
"${hm}/programs/games"
|
2024-10-21 14:37:58 +00:00
|
|
|
|
2024-12-18 09:14:06 +00:00
|
|
|
"${hm}/programs/waybar"
|
|
|
|
"${hm}/programs/fuzzel.nix"
|
|
|
|
"${hm}/programs/hypr"
|
2024-11-28 20:51:20 +00:00
|
|
|
|
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"
|
2024-10-21 14:37:58 +00:00
|
|
|
];
|
|
|
|
extraSpecialArgs = specialArgs;
|
|
|
|
};
|
|
|
|
|
2024-09-29 21:48:55 +00:00
|
|
|
environment.variables.FLAKE = "/home/nezia/.dotfiles";
|
2024-08-25 19:58:12 +00:00
|
|
|
}
|