mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
hosts/plover: update Disko config... agai
This commit is contained in:
parent
511c25788c
commit
d0bdbb8992
@ -1,9 +1,9 @@
|
||||
{ disk ? "/dev/sda", ... }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
disko.devices = {
|
||||
disk.primary = {
|
||||
device = disk;
|
||||
device = "/dev/sda";
|
||||
type = "disk";
|
||||
content = {
|
||||
type = "gpt";
|
||||
@ -28,29 +28,26 @@
|
||||
};
|
||||
|
||||
root = {
|
||||
start = "256MiB";
|
||||
end = "100%";
|
||||
size = "100%";
|
||||
type = "8300";
|
||||
content = {
|
||||
type = "btrfs";
|
||||
extraArgs = [ "-f" ];
|
||||
|
||||
subvolumes = [
|
||||
{
|
||||
subvolumes = {
|
||||
"/root" = {
|
||||
mountOptions = [ "compress=zstd" ];
|
||||
mountOptions = [ "compress=zstd:10" ];
|
||||
mountpoint = "/";
|
||||
};
|
||||
"/home" = {
|
||||
mountOptions = [ "compress=zstd" ];
|
||||
mountOptions = [ "compress=zstd:10" ];
|
||||
mountpoint = "/home";
|
||||
};
|
||||
"/nix" = {
|
||||
mountOptions = [ "compress=zstd" "noatime" "noacl" ];
|
||||
mountOptions = [ "compress=zstd:8" "noatime" "noacl" ];
|
||||
mountpoint = "/nix";
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user