Simpler setup

This commit is contained in:
Filippo Berto 2025-02-20 20:54:02 +01:00
parent a155dc30b6
commit e83145214f
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
6 changed files with 40 additions and 31 deletions

View file

@ -17,25 +17,25 @@
fileSystems = {
"/" = {
device = "/dev/nvme1n1p2";
device = "/dev/disk/by-partuuid/738c1b35-4e7f-46be-be86-1c2ce3731cb5";
fsType = "btrfs";
options = [ "subvol=@root" ];
};
"/boot" = {
device = "/dev/nvme1n1p1";
device = "/dev/disk/by-partuuid/63464168-656a-4b74-81ba-9a3ed5cf533b";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
"/nix" = {
device = "/dev/nvme1n1p2";
device = "/dev/disk/by-partuuid/738c1b35-4e7f-46be-be86-1c2ce3731cb5";
fsType = "btrfs";
options = [ "subvol=@nix" ];
};
"/home/bertof" = {
device = "/dev/nvme1n1p2";
device = "/dev/disk/by-partuuid/738c1b35-4e7f-46be-be86-1c2ce3731cb5";
fsType = "btrfs";
options = [ "subvol=@home_bertof" ];
};