mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-09 20:30:05 +00:00
🚧 Finish user configuration loading and implement working workstation setup
This commit is contained in:
parent
54edba0070
commit
09c06d34e5
8 changed files with 137 additions and 16 deletions
|
@ -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";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue