Compare commits

..

4 commits

3 changed files with 6 additions and 6 deletions

View file

@ -23,4 +23,9 @@ in
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
}

View file

@ -6,11 +6,6 @@
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
initrd = {
availableKernelModules = [
"ata_piix"

View file

@ -47,7 +47,7 @@ in
age.secrets = concatMapAttrs (
name: secret:
optionalAttrs (elem hostPublicKey secret.publicKeys) {
${removeSuffix ".age" name}.file = secrets.rootPath + "secrets/${name}";
${removeSuffix ".age" name}.file = secrets.rootPath + "/${name}";
}
) secrets.mapping;