1
0
mirror of https://github.com/kmein/niveum synced 2026-03-23 13:21:06 +01:00

1 Commits

Author SHA1 Message Date
43ab6b3210 feat(tahina): init as guest laptop 2022-03-29 01:07:01 +02:00
2 changed files with 7 additions and 1 deletions

View File

@@ -28,6 +28,7 @@ in {
name = "xenos";
password = "xenos";
isNormalUser = true;
extraGroups = ["networkmanager"];
};
services.xserver = {

View File

@@ -36,7 +36,12 @@
fsType = "vfat";
};
swapDevices = [];
swapDevices = [
{
device = "/swapfile";
size = 2048;
}
];
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}