1
0
mirror of https://github.com/kmein/niveum synced 2026-03-18 02:51:08 +01:00
Files
niveum/systems/catullus/hardware-configuration.nix

15 lines
288 B
Nix
Raw Normal View History

2019-01-31 23:39:38 +01:00
{ config, pkgs, ... }:
2019-01-30 11:48:35 +00:00
{
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelParams = [ "cma=32M" ];
fileSystems = {
"/" = {
device = "/dev/disk/by-label/NIXOS_SD";
fsType = "ext4";
};
};
swapDevices = [ { device = "/swapfile"; size = 1024; } ];
}