nixos-configs/devices/bbsteamie/default.nix
matt1432 7941c8cf35
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(devices): place configs in order and delete oksys
2024-07-14 22:59:33 -04:00

57 lines
1.1 KiB
Nix

{
config,
self,
...
}: let
inherit (config.vars) mainUser hostName;
in {
# ------------------------------------------------
# Imports
# ------------------------------------------------
imports = [
./hardware-configuration.nix
../../modules/kmscon.nix
../../modules/sshd.nix
./modules/desktop.nix
self.nixosModules.plymouth
];
# State Version: DO NOT CHANGE
system.stateVersion = "24.11";
home-manager.users.${mainUser}.home.stateVersion = "24.11";
# ------------------------------------------------
# User Settings
# ------------------------------------------------
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";
# ------------------------------------------------
# `Self` Modules configuration
# ------------------------------------------------
boot.plymouth = {
enable = true;
theme = "steamos";
};
}