flocon/hosts/solaire/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

21 lines
425 B
Nix

_: {
imports = [./hardware-configuration.nix ./config/theme.nix ./config/nvidia.nix];
local = {
systemVars = {
hostName = "solaire";
username = "nezia";
};
homeVars = {
fullName = "Anthony Rodriguez";
email = "anthony@nezia.dev";
};
profiles = {
desktop.enable = true;
gaming.enable = true;
};
};
environment.variables.FLAKE = "/home/nezia/.dotfiles";
}