btrfs on pleniscenta
This commit is contained in:
parent
a90f492a23
commit
7389c8b89f
2 changed files with 10 additions and 11 deletions
|
@ -13,9 +13,6 @@
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.zfs.autoScrub.enable = true;
|
|
||||||
services.zfs.trim.enable = true;
|
|
||||||
|
|
||||||
hardware.opengl = {
|
hardware.opengl = {
|
||||||
enable = true;
|
enable = true;
|
||||||
driSupport = true;
|
driSupport = true;
|
||||||
|
|
|
@ -6,25 +6,27 @@
|
||||||
};
|
};
|
||||||
kernelModules = [ "kvm-intel" ];
|
kernelModules = [ "kvm-intel" ];
|
||||||
extraModulePackages = [ ];
|
extraModulePackages = [ ];
|
||||||
supportedFilesystems = [ "zfs" ];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
"/boot" = {
|
"/boot" = {
|
||||||
device = "/dev/disk/by-uuid/4A39-D0DF";
|
device = "/dev/disk/by-uuid/A7FE-359B";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
"/" = {
|
"/" = {
|
||||||
device = "zpool/root";
|
device = "/dev/disk/by-uuid/542f188a-bcca-438a-97d3-fdaff0cacd83";
|
||||||
fsType = "zfs";
|
fsType = "btrfs";
|
||||||
|
options = [ "subvol=root" "compress=zstd" "noatime" ];
|
||||||
};
|
};
|
||||||
"/nix" = {
|
"/nix" = {
|
||||||
device = "zpool/nix";
|
device = "/dev/disk/by-uuid/542f188a-bcca-438a-97d3-fdaff0cacd83";
|
||||||
fsType = "zfs";
|
fsType = "btrfs";
|
||||||
|
options = [ "subvol=nix" "compress=zstd" "noatime" ];
|
||||||
};
|
};
|
||||||
"/persist" = {
|
"/persist" = {
|
||||||
device = "zpool/persist";
|
device = "/dev/disk/by-uuid/542f188a-bcca-438a-97d3-fdaff0cacd83";
|
||||||
fsType = "zfs";
|
fsType = "btrfs";
|
||||||
|
options = [ "subvol=persist" "compress=zstd" "noatime" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue