blah
This commit is contained in:
BIN
hosts/fruitbook/.configuration.nix.swp
Normal file
BIN
hosts/fruitbook/.configuration.nix.swp
Normal file
Binary file not shown.
BIN
hosts/fruitbook/.disks.nix.swp
Normal file
BIN
hosts/fruitbook/.disks.nix.swp
Normal file
Binary file not shown.
@@ -18,3 +18,18 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
device = "/dev/disk/by-id/ata-APPLE_SSD_SM0512G_S29ANYAH526520";
|
||||||
|
subvol = name: {
|
||||||
|
type = "btrfs";
|
||||||
|
inherit device;
|
||||||
|
options = ["subvol=${name}"];
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
fileSystems."/" = subvol "rootfs";
|
||||||
|
fileSystems."/nix" = subvol "nix";
|
||||||
|
fileSystems."/persist" = subvol "persist";
|
||||||
|
fileSystems."/persist/home" = subvol "persist/home";
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user