Added remote unlock capabilities

This commit is contained in:
Henrik
2025-10-27 21:07:04 +01:00
parent 981683bf51
commit c8996554fb
2 changed files with 42 additions and 1 deletions

View File

@@ -10,6 +10,7 @@
# nix settings
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.download-buffer-size = 524288000; # 500MB
# Bootloader to work with LUKS
boot.loader.grub = {
@@ -73,6 +74,11 @@
];
};
# this is related to luks remote unlock via ssh
# Disable initrd secrets for VM builds to avoid secret error
# Error is not present in real depolyments
boot.initrd.secrets = lib.mkForce {};
# Add VM-specific users
users.users.smith = {
isNormalUser = true;