flocon/hosts/vamos/default.nix

30 lines
470 B
Nix
Raw Permalink Normal View History

_: {
imports = [
./hardware-configuration.nix
./config/theme.nix
];
local = {
systemVars = {
hostName = "vamos";
username = "nezia";
};
homeVars = {
fullName = "Anthony Rodriguez";
email = "anthony@nezia.dev";
};
profiles = {
desktop.enable = true;
laptop.enable = true;
};
modules = {
hyprland.enable = true;
};
};
environment.variables.FLAKE = "/home/nezia/.dotfiles";
2024-08-25 19:58:12 +00:00
}