nixos-anywhere #4

Merged
pim merged 8 commits from nixos-anywhere into master 2023-11-15 12:47:08 +00:00
3 changed files with 8 additions and 6 deletions
Showing only changes of commit 8e6a40e878 - Show all commits

View file

@ -1,5 +1,4 @@
{ machine, ...}:
{
{ machine, ... }: {
age = {
identityPaths = [ "/root/age_ed25519" ];

View file

@ -32,7 +32,9 @@
KbdInteractiveAuthentication = false;
};
extraConfig = ''
HostCertificate ${builtins.toFile "host_ed25519-cert.pub" machine.host-cert}
HostCertificate ${
builtins.toFile "host_ed25519-cert.pub" machine.host-cert
}
HostKey ${config.age.secrets.host_ed25519.path}
'';
};
@ -66,7 +68,9 @@
};
extraConfig = ''
CertificateFile ${builtins.toFile "user_ed25519-cert.pub" machine.user-cert}
CertificateFile ${
builtins.toFile "user_ed25519-cert.pub" machine.user-cert
}
HostKey ${config.age.secrets.user_ed25519.path}
'';
};

View file

@ -39,8 +39,7 @@
];
};
# TODO. if uncommented, nix flake check fails
# formatter = pkgs.nixfmt;
formatter.${system} = pkgs.nixfmt;
nixosConfigurations = mkNixosSystems (machine: {
inherit system;