diff --git a/configuration.nix b/configuration.nix index 64c3345..e416a06 100644 --- a/configuration.nix +++ b/configuration.nix @@ -18,6 +18,13 @@ systemd-boot.consoleMode = "0"; }; + boot.initrd.luks.devices = { + root = { + device = "/dev/sda"; + preLVM = true; + }; + }; + boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; nix.settings.extra-platforms = [ "aarch64-linux" ]; diff --git a/systems/vm.nix b/systems/vm.nix index 0025aa0..830b2f0 100644 --- a/systems/vm.nix +++ b/systems/vm.nix @@ -91,7 +91,7 @@ }; # System - system.stateVersion = "22.11"; + system.stateVersion = "23.05"; system.autoUpgrade.enable = true; }