48 lines
712 B
Nix
48 lines
712 B
Nix
|
{
|
||
|
config,
|
||
|
jovian,
|
||
|
...
|
||
|
}: let
|
||
|
inherit (config.vars) mainUser hostName;
|
||
|
in {
|
||
|
imports = [
|
||
|
jovian.nixosModules.default
|
||
|
|
||
|
./hardware-configuration.nix
|
||
|
|
||
|
./modules/desktop.nix
|
||
|
];
|
||
|
|
||
|
vars = {
|
||
|
mainUser = "mariah";
|
||
|
hostName = "bbsteamie";
|
||
|
promptMainColor = "pink";
|
||
|
};
|
||
|
|
||
|
users.users.${mainUser} = {
|
||
|
isNormalUser = true;
|
||
|
extraGroups = [
|
||
|
"wheel"
|
||
|
"adm"
|
||
|
];
|
||
|
};
|
||
|
|
||
|
networking = {
|
||
|
inherit hostName;
|
||
|
networkmanager.enable = true;
|
||
|
};
|
||
|
|
||
|
home-manager.users.${mainUser} = {
|
||
|
imports = [];
|
||
|
|
||
|
# No touchy
|
||
|
home.stateVersion = "24.11";
|
||
|
};
|
||
|
|
||
|
# Set your time zone.
|
||
|
time.timeZone = "America/Montreal";
|
||
|
|
||
|
# No touchy
|
||
|
system.stateVersion = "24.11";
|
||
|
}
|