Anthony Rodriguez
b808281674
Started moving HM config to the new local modules system. Conditionally toggling based on profiles and modules.
29 lines
470 B
Nix
29 lines
470 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;
|
|
};
|
|
|
|
modules = {
|
|
hyprland.enable = true;
|
|
};
|
|
};
|
|
|
|
environment.variables.FLAKE = "/home/nezia/.dotfiles";
|
|
}
|