Commit 48cb99a
Changed files (1)
modules
hosts
kevin
modules/hosts/kevin/filesystem.nix
@@ -9,25 +9,25 @@
fileSystems."/" = {
device = "/dev/disk/by-uuid/7a1d1946-89bf-432d-89d7-dc047decbe49";
fsType = "btrfs";
- options = [ "subvol=root" "compress=zstd" ];
+ options = ["subvol=root" "compress=zstd"];
};
fileSystems."/nix" = {
device = "/dev/disk/by-uuid/7a1d1946-89bf-432d-89d7-dc047decbe49";
fsType = "btrfs";
- options = [ "subvol=nix" "noatime" "compress=zstd" ];
+ options = ["subvol=nix" "noatime" "compress=zstd"];
};
fileSystems."/home" = {
device = "/dev/disk/by-uuid/7a1d1946-89bf-432d-89d7-dc047decbe49";
fsType = "btrfs";
- options = [ "subvol=home" "compress=zstd" ];
+ options = ["subvol=home" "compress=zstd"];
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/571F-0096";
fsType = "vfat";
- options = [ "fmask=0022" "dmask=0022" ];
+ options = ["fmask=0022" "dmask=0022"];
};
};
}