Anthony Rodriguez
9b01b40253
We set profiles before moving the config so nothing breaks and we keep a working commit history :)
21 lines
425 B
Nix
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";
|
|
}
|