1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/systems/catullus/physical.nix
2019-01-30 13:26:06 +01:00

21 lines
420 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [ ./config.nix ];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelParams = [ "cma=32M" ];
fileSystems = {
"/boot" = {
device = "/dev/disk/by-label/NIXOS_BOOT";
fsType = "vfat";
};
"/" = {
device = "/dev/disk/by-label/NIXOS_SD";
fsType = "ext4";
};
};
swapDevices = [ { device = "/swapfile"; size = 1024; } ];
}