blob: b452ed9c05963206b9c322786009edf24525a45d (
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
26
|
{ 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";
};
};
};
}
|