blob: 0aff93f0878e02edb3e35b4f50b8f3f19d0c481f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
{
config,
lib,
...
}: let
cfg = config.system.disko;
defaultMountOptions = ["compress-force=zstd:15" "noatime"];
in {
options.vhack.disko = {
enable = lib.mkEnableOption "disk configuration via disko";
disk = lib.mkOption {
type = lib.types.path;
example = "/dev/disk/by-id/ata-WDC_WD10SDRW-11A0XS0_WD-WXP2A901KJN5";
description = "Path to the main disk";
};
};
config = {
disko.devices = {
disk.main = {
type = "disk";
device = cfg.disk;
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02"; # for grub MBR
};
root = {
size = "100%";
content = {
type = "btrfs";
extraArgs = ["-f" "--label nixos"]; # f: Override existing partitions
subvolumes = {
"/nix" = {
mountpoint = "/nix";
mountOptions = defaultMountOptions;
};
"/srv" = {
mountpoint = "/srv";
mountOptions = defaultMountOptions;
};
"/srv/.snapshots" = {
mountpoint = "/srv/.snapshots";
mountOptions = defaultMountOptions;
};
"/boot" = {
mountpoint = "/boot";
mountOptions = defaultMountOptions;
};
};
};
};
};
};
};
nodev."/" = {
fsType = "tmpfs";
mountOptions = ["defaults" "size=6G" "mode=755"];
};
};
fileSystems = {
"/srv" = {
neededForBoot = true;
};
"/boot" = {
neededForBoot = true;
};
};
};
}
|