blob: d05120f1412cdded5bef9bc79a4cb82ecd5048c7 (
plain)
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
|
{
config,
lib,
pkgs,
...
}:
with lib; {
config = {
cynerd.desktop.enable = true;
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/e092a3ad-fb32-44fa-bc1f-14c2733da033";
options = ["compress=lzo" "subvol=@nix"];
};
"/home" = {
device = "/dev/disk/by-uuid/e092a3ad-fb32-44fa-bc1f-14c2733da033";
options = ["compress=lzo" "subvol=@home"];
};
"/boot" = {
device = "/dev/disk/by-uuid/EB3E-3635";
};
};
};
}
|