mirror of
https://github.com/kmein/niveum
synced 2026-03-23 05:11:08 +01:00
chore: catullus -> toum
This commit is contained in:
16
systems/toum/hardware-configuration.nix
Normal file
16
systems/toum/hardware-configuration.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ config, pkgs, ... }: {
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
boot.kernelParams = [ "cma=32M" ];
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/disk/by-label/NIXOS_SD";
|
||||
fsType = "ext4";
|
||||
};
|
||||
};
|
||||
|
||||
swapDevices = [{
|
||||
device = "/swapfile";
|
||||
size = 1024;
|
||||
}];
|
||||
}
|
||||
Reference in New Issue
Block a user