2024-06-29 03:45:06 -04:00
|
|
|
{
|
|
|
|
config,
|
2024-07-10 20:38:03 -04:00
|
|
|
self,
|
2024-06-29 03:45:06 -04:00
|
|
|
...
|
|
|
|
}: let
|
|
|
|
inherit (config.vars) mainUser hostName;
|
|
|
|
in {
|
2024-07-14 22:59:33 -04:00
|
|
|
# ------------------------------------------------
|
|
|
|
# Imports
|
|
|
|
# ------------------------------------------------
|
2024-06-29 03:45:06 -04:00
|
|
|
imports = [
|
2024-07-14 22:59:33 -04:00
|
|
|
./hardware-configuration.nix
|
|
|
|
|
2024-06-29 22:30:08 -04:00
|
|
|
../../modules/kmscon.nix
|
2024-06-30 11:43:04 -04:00
|
|
|
../../modules/sshd.nix
|
2024-06-29 03:45:06 -04:00
|
|
|
|
2024-07-27 15:22:55 -04:00
|
|
|
./modules/desktop
|
2024-07-10 20:38:03 -04:00
|
|
|
|
|
|
|
self.nixosModules.plymouth
|
2024-06-29 03:45:06 -04:00
|
|
|
];
|
|
|
|
|
2024-07-14 22:59:33 -04:00
|
|
|
# State Version: DO NOT CHANGE
|
|
|
|
system.stateVersion = "24.11";
|
|
|
|
home-manager.users.${mainUser}.home.stateVersion = "24.11";
|
|
|
|
|
|
|
|
# ------------------------------------------------
|
|
|
|
# User Settings
|
|
|
|
# ------------------------------------------------
|
2024-06-29 03:45:06 -04:00
|
|
|
vars = {
|
|
|
|
mainUser = "mariah";
|
|
|
|
hostName = "bbsteamie";
|
|
|
|
promptMainColor = "pink";
|
|
|
|
};
|
|
|
|
|
|
|
|
users.users.${mainUser} = {
|
|
|
|
isNormalUser = true;
|
|
|
|
extraGroups = [
|
|
|
|
"wheel"
|
|
|
|
"adm"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
networking = {
|
|
|
|
inherit hostName;
|
|
|
|
networkmanager.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
time.timeZone = "America/Montreal";
|
|
|
|
|
2024-07-14 22:59:33 -04:00
|
|
|
# ------------------------------------------------
|
|
|
|
# `Self` Modules configuration
|
|
|
|
# ------------------------------------------------
|
|
|
|
boot.plymouth = {
|
|
|
|
enable = true;
|
|
|
|
theme = "steamos";
|
|
|
|
};
|
2024-06-29 03:45:06 -04:00
|
|
|
}
|