🚧 Finish user configuration loading and implement working workstation setup

This commit is contained in:
Jo 2025-04-27 17:37:30 +02:00
parent 54edba0070
commit 09c06d34e5
8 changed files with 137 additions and 16 deletions

View file

@ -10,14 +10,34 @@
extraGroups = ["wheel"];
};
desktop.gnome.enable = true;
system.grub.enable = true;
users.jo = {
enable = true;
password = "jo"; # For testing only, replace with sops secret before production use
extraGroups = ["wheel"];
};
archetypes.workstation.enable = true;
};
environment.systemPackages = with pkgs; [
ghostty
firefox
# Configure 8GB SWAP partition
swapDevices = [
{
device = "/swapfile";
size = 8 * 1024;
}
];
boot = {
# Configure additional kernel modules.
extraModulePackages = [
pkgs.linuxPackages_latest.rtl8821ce # Use custom network-card driver.
];
blacklistedKernelModules = [
"rtw88_8821ce" # Block the default network-card driver.
];
};
networking.hostName = "puzzlevision";
system.stateVersion = "25.05";
}