22 lines
696 B
Nix
Raw Normal View History

2023-01-26 00:24:32 +03:00
{ lib, ... }: {
2023-02-23 00:01:15 +03:00
autoinstall."Home-Hypervisor" = {
2023-01-26 00:24:32 +03:00
debug = false;
mainuser = "ataraxia";
2023-01-26 00:32:35 +03:00
flakesPath = "/home/nixos/nixos-config";
2023-03-25 19:28:11 +03:00
encryption.encryptBoot = true;
encryption.encryptRoot = true;
2023-01-26 00:24:32 +03:00
encryption.passwordFile = "/home/nixos/pass";
encryption.argonIterTime = "4000";
partitioning.useEntireDisk = true;
partitioning.disk = "/dev/disk/by-id/ata-Samsung_SSD_870_EVO_500GB_S5Y1NJ1R160554B";
partitioning.nullifyDisk = false;
swapPartition.enable = true;
swapPartition.size = "8GiB";
zfsOpts.ashift = 13;
zfsOpts.bootPoolReservation = "256M";
zfsOpts.rootPoolReservation = "25G";
persist.enable = true;
2023-01-26 00:32:35 +03:00
oldUefi = true;
2023-01-26 00:24:32 +03:00
};
}