24 lines
771 B
Nix
Raw Normal View History

2023-03-25 19:28:11 +03:00
{ ... }: {
autoinstall.AMD-Workstation = {
2023-03-26 19:24:28 +03:00
# debug = true;
2023-03-25 19:28:11 +03:00
mainuser = "ataraxia";
flakesPath = "/home/nixos/nixos-config";
2023-03-25 19:31:05 +03:00
encryption.encryptBoot = false;
encryption.encryptRoot = true;
2023-03-25 19:28:11 +03:00
encryption.passwordFile = "/home/nixos/pass";
encryption.argonIterTime = "4000";
partitioning.useEntireDisk = true;
partitioning.disk = "/dev/disk/by-id/nvme-XPG_GAMMIX_S11_Pro_2K342L2BBNUY";
partitioning.nullifyDisk = false;
partitioning.emptySpace = "100GiB";
2023-03-26 19:24:28 +03:00
partitioning.createBootPool = true;
2023-03-25 19:28:11 +03:00
swapPartition.enable = true;
swapPartition.size = "16GiB";
2023-03-26 19:24:28 +03:00
efiMountPoint = "/efi";
2023-03-25 19:28:11 +03:00
zfsOpts.ashift = 13;
zfsOpts.bootPoolReservation = "256M";
zfsOpts.rootPoolReservation = "45G";
persist.enable = true;
};
2023-03-26 19:24:28 +03:00
}