flocon/hosts/vamos/default.nix

65 lines
1.3 KiB
Nix
Raw Normal View History

{
inputs,
specialArgs,
...
}: let
system = "${inputs.self}/system";
home = "${inputs.self}/home";
in {
2024-12-18 08:24:30 +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
./modules
"${system}"
"${system}/core/lanzaboote.nix"
"${system}/hardware/fprintd.nix"
"${system}/services/power.nix"
"${system}/services/brightness.nix"
"${system}/services/logind.nix"
"${system}/services/greetd.nix"
"${system}/services/kanata.nix"
2024-12-13 18:05:02 +00:00
"${system}/programs/hyprland.nix"
"${system}/services/gnome.nix"
"${system}/services/mail.nix"
2024-11-17 14:04:22 +00:00
"${system}/services/documentation.nix"
2024-09-24 13:09:36 +00:00
];
home-manager = {
users.nezia.imports = [
"${home}"
"${home}/services/udiskie.nix"
2024-12-13 18:05:02 +00:00
"${home}/programs/hypr"
"${home}/programs/waybar"
"${home}/programs/fuzzel.nix"
"${home}/services/swaync"
"${home}/programs/swaybg.nix"
2024-12-13 22:23:28 +00:00
"${home}/programs/wlogout.nix"
2024-12-01 11:21:50 +00:00
"${home}/services/syncthing.nix"
"${home}/programs/editors/neovim.nix"
"${home}/terminal/emulators/foot.nix"
];
extraSpecialArgs = specialArgs;
};
environment.variables.FLAKE = "/home/nezia/.dotfiles";
2024-08-25 19:58:12 +00:00
}