run nix fmt

This commit is contained in:
jopejoe1 2024-07-10 23:02:54 +02:00
parent eab8e4b1d8
commit d5cbe31c02
61 changed files with 1299 additions and 830 deletions

View file

@ -19,10 +19,12 @@
fsType = "vfat";
};
swapDevices = [{
device = "/var/lib/swapfile";
size = (4 * 1024) + (2 * 1024);
}];
swapDevices = [
{
device = "/var/lib/swapfile";
size = (4 * 1024) + (2 * 1024);
}
];
networking.wireless.enable = true;
@ -37,4 +39,3 @@
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
hardware.enableRedistributableFirmware = true;
}