This commit is contained in:
iFargle 2023-09-22 17:44:23 +09:00
parent d07e02b4d1
commit f3d04f5a91

View file

@ -1,6 +1,8 @@
{ {
boot.loader.grub.device = "/dev/sda"; boot.loader.grub.device = "/dev/sda";
boot.initrd.luks.devices."sda2".device = "/dev/sda2"; boot.initrd.luks.devices."sda2".device = "/dev/sda2";
services.btrfs.autoScrub.enable = true;
services.btrfs.autoScrub.interval = "weekly";
disko.devices.disk.sda = { disko.devices.disk.sda = {
device = "/dev/sda"; device = "/dev/sda";
@ -32,8 +34,22 @@
settings.keyFile = "/tmp/secret.key"; settings.keyFile = "/tmp/secret.key";
content = { content = {
type = "filesystem"; type = "filesystem";
format = "ext4"; format = "btrfs";
mountpoint = "/"; # extraArgs = [ "-f" ];
subvolumes = {
"/root" = {
mountpoint = "/";
mountOptions = [ "compress=zstd" "noatime" ];
}; # root
"/home" = {
mountpoint = "/home";
mountOptions = [ "compress=zstd" "noatime" ];
}; # home
"/nix" = {
mountpoint = "/nix";
mountOptions = [ "compress=zstd" "noatime" ];
}; # nix
}; # subvolumes
}; # content.content }; # content.content
}; # content }; # content
} # partition 2 } # partition 2