flocon/hosts/vamos/default.nix
Anthony Rodriguez 9b01b40253
hosts: set profiles
We set profiles before moving the config so nothing breaks and we keep a
working commit history :)
2025-01-14 12:33:00 +01:00

22 lines
404 B
Nix

_: {
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;
};
};
environment.variables.FLAKE = "/home/nezia/.dotfiles";
}