Skip to content

Commit

Permalink
feat(hosts/nb): btrfs subvol for /home & /nix/store
Browse files Browse the repository at this point in the history
  • Loading branch information
Lichthagel committed Jul 31, 2024
1 parent 3e99ca4 commit 7ee07ae
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions hosts/jnbnixos/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@
fsType = "btrfs";
options = [ "subvol=@" ];
};
"/home" = {
device = "/dev/mapper/rootDevice";
fsType = "btrfs";
options = [ "subvol=@home" ];
};
"/nix/store" = {
device = "/dev/mapper/rootDevice";
fsType = "btrfs";
options = [ "subvol=@nixstore" ];
};
"/boot" = {
device = "/dev/disk/by-partuuid/69f08489-2067-864a-911b-06f874fe18f1";
fsType = "vfat";
Expand Down

0 comments on commit 7ee07ae

Please sign in to comment.