1
0
mirror of https://github.com/kmein/niveum synced 2026-03-19 19:41:08 +01:00
Files
niveum/systems/toum/hardware-configuration.nix

14 lines
318 B
Nix
Raw Normal View History

2020-06-10 17:37:25 +02:00
{ config, pkgs, ... }: {
boot.kernelPackages = pkgs.linuxPackages; # https://github.com/NixOS/nixpkgs/issues/97064#issuecomment-708986741
2019-01-30 11:48:35 +00:00
boot.kernelParams = [ "cma=32M" ];
fileSystems = {
"/" = {
device = "/dev/disk/by-label/NIXOS_SD";
fsType = "ext4";
};
};
2020-11-10 22:17:47 +01:00
zramSwap.enable = true;
2019-01-30 11:48:35 +00:00
}