mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
14 lines
318 B
Nix
14 lines
318 B
Nix
{ config, pkgs, ... }: {
|
|
boot.kernelPackages = pkgs.linuxPackages; # https://github.com/NixOS/nixpkgs/issues/97064#issuecomment-708986741
|
|
boot.kernelParams = [ "cma=32M" ];
|
|
|
|
fileSystems = {
|
|
"/" = {
|
|
device = "/dev/disk/by-label/NIXOS_SD";
|
|
fsType = "ext4";
|
|
};
|
|
};
|
|
|
|
zramSwap.enable = true;
|
|
}
|