This commit is contained in:
Lucy Hochkamp 2025-05-12 01:17:44 +02:00
parent 45b923da8c
commit 401cc0f269
No known key found for this signature in database
4 changed files with 87 additions and 64 deletions

View file

@ -0,0 +1,18 @@
{ config, lib, pkgs, ... }:
{
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/0565c87f-d576-4016-ada7-b3d44ce5e6b3";
fsType = "ext4";
};
};
boot.initrd.luks.devices = {
"LUKS-MINOS-ROOTFS" = {
device = "/dev/disk/by-uuid/a9134654-519e-4611-894d-b6244d1ea0f7";
};
};
nix.settings.max-jobs = lib.mkDefault 4;
}