meow
This commit is contained in:
parent
45b923da8c
commit
401cc0f269
4 changed files with 87 additions and 64 deletions
18
instances/minos/hardware-configuration.nix
Normal file
18
instances/minos/hardware-configuration.nix
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue