chore(marr): add disko config
This commit is contained in:
parent
9bfb7d5db0
commit
330823cd68
3 changed files with 69 additions and 0 deletions
|
@ -10,6 +10,7 @@
|
|||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./home.nix
|
||||
./disko.nix
|
||||
];
|
||||
|
||||
modules = {
|
||||
|
|
38
hosts/marr/disko.nix
Normal file
38
hosts/marr/disko.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
disko.devices = {
|
||||
disk.builtin = {
|
||||
device = "/dev/nvme0n1";
|
||||
type = "disk";
|
||||
content = {
|
||||
type = "gpt";
|
||||
partitions = {
|
||||
ESP = mkBoot "1G";
|
||||
luks = {
|
||||
size = "100%";
|
||||
content = {
|
||||
type = "luks";
|
||||
name = "crypt";
|
||||
settings = {
|
||||
keyFile = "/tmp/secret.key";
|
||||
allowDiscards = true;
|
||||
};
|
||||
content = {
|
||||
type = "lvm_pv";
|
||||
vg = "pool";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
lvm_vg = {
|
||||
pool = {
|
||||
type = "lvm_vg";
|
||||
lvs = {
|
||||
swap = mkSwap "32G";
|
||||
root = mkRoot "100%" "ext4";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -79,4 +79,34 @@ in
|
|||
inherit (lib.strings) sanitizeDerivationName;
|
||||
in
|
||||
str: (sanitizeDerivationName (lib.toLower str));
|
||||
|
||||
dikso = {
|
||||
mkBoot = size: {
|
||||
size = size;
|
||||
type = "EF00";
|
||||
content = {
|
||||
type = "filesystem";
|
||||
format = "vfat";
|
||||
mountpoint = "/boot";
|
||||
mountOptions = [ "umask=0077" ];
|
||||
};
|
||||
};
|
||||
mkSwap = size: {
|
||||
size = "32G";
|
||||
content = {
|
||||
type = "swap";
|
||||
randomEncryption = true;
|
||||
priority = 100;
|
||||
};
|
||||
};
|
||||
mkRoot = size: format: {
|
||||
inherit size;
|
||||
content = {
|
||||
inherit format;
|
||||
type = "filesystem";
|
||||
mountpoint = "/";
|
||||
mountOptions = [ "defaults" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue