Anthony Rodriguez
ec285bcc52
Here, we also use the option we just added, `local.modules.hyprland.enable` to toggle Hyprland, as well as the profiles. Also removed other unused configuration, such as KDE/Gnome.
25 lines
479 B
Nix
25 lines
479 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;
|
|
};
|
|
|
|
modules = {
|
|
hyprland.enable = true;
|
|
};
|
|
};
|
|
|
|
environment.variables.FLAKE = "/home/nezia/.dotfiles";
|
|
}
|