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

17 lines
360 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-06-10 17:37:25 +02:00
swapDevices = [{
device = "/swapfile";
size = 1024;
}];
2019-01-30 11:48:35 +00:00
}