2024-11-15 18:44:59 +00:00
|
|
|
{
|
|
|
|
inputs,
|
|
|
|
specialArgs,
|
|
|
|
...
|
|
|
|
}: let
|
2024-12-18 18:24:59 +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 18:24:59 +00:00
|
|
|
local.systemVars = {
|
|
|
|
hostName = "vamos";
|
|
|
|
username = "nezia";
|
|
|
|
};
|
|
|
|
|
|
|
|
local.homeVars = {
|
|
|
|
fullName = "Anthony Rodriguez";
|
|
|
|
email = "anthony@nezia.dev";
|
|
|
|
};
|
|
|
|
|
2024-09-24 13:09:36 +00:00
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
2024-12-18 18:24:59 +00:00
|
|
|
./config/theme.nix
|
2024-10-21 14:37:58 +00:00
|
|
|
|
2024-12-18 18:24:59 +00:00
|
|
|
"${nixos}"
|
|
|
|
"${nixos}/core/lanzaboote.nix"
|
2024-10-21 14:37:58 +00:00
|
|
|
|
2024-12-18 18:24:59 +00:00
|
|
|
"${nixos}/hardware/fprintd.nix"
|
|
|
|
"${nixos}/services/power.nix"
|
|
|
|
"${nixos}/services/brightness.nix"
|
2024-10-21 14:37:58 +00:00
|
|
|
|
2024-12-18 18:24:59 +00:00
|
|
|
"${nixos}/services/logind.nix"
|
|
|
|
"${nixos}/services/greetd.nix"
|
|
|
|
"${nixos}/services/kanata.nix"
|
2024-10-21 14:37:58 +00:00
|
|
|
|
2024-12-18 18:24:59 +00:00
|
|
|
"${nixos}/programs/hyprland.nix"
|
|
|
|
"${nixos}/services/gnome.nix"
|
|
|
|
"${nixos}/services/mail.nix"
|
2024-11-17 14:04:22 +00:00
|
|
|
|
2024-12-18 18:24:59 +00:00
|
|
|
"${nixos}/services/documentation.nix"
|
2024-09-24 13:09:36 +00:00
|
|
|
];
|
2024-10-21 14:37:58 +00:00
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
users.nezia.imports = [
|
2024-12-18 18:24:59 +00:00
|
|
|
"${hm}"
|
|
|
|
"${hm}/services/udiskie.nix"
|
2024-10-21 14:37:58 +00:00
|
|
|
|
2024-12-18 18:24:59 +00:00
|
|
|
"${hm}/programs/hypr"
|
|
|
|
"${hm}/programs/waybar"
|
|
|
|
"${hm}/programs/fuzzel.nix"
|
2024-11-28 20:51:20 +00:00
|
|
|
|
2024-12-18 18:24:59 +00:00
|
|
|
"${hm}/services/swaync"
|
|
|
|
"${hm}/programs/swaybg.nix"
|
|
|
|
"${hm}/programs/wlogout.nix"
|
2024-10-21 14:37:58 +00:00
|
|
|
|
2024-12-18 18:24:59 +00:00
|
|
|
"${hm}/services/syncthing.nix"
|
2024-12-04 21:22:45 +00:00
|
|
|
|
2024-12-18 18:24:59 +00:00
|
|
|
"${hm}/programs/editors/neovim.nix"
|
2024-12-04 21:22:45 +00:00
|
|
|
|
2024-12-18 18:24:59 +00:00
|
|
|
"${hm}/terminal/emulators/foot.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
|
|
|
}
|