nixos-anywhere #4

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

View file

@ -1,11 +1,11 @@
{ machine, ...}:
{ {
age = { age = {
identityPaths = [ "/root/age_ed25519" ]; identityPaths = [ "/root/age_ed25519" ];
secrets = { secrets = {
# TODO: make machine independent "host_ed25519".file = ./secrets/${machine.name}_host_ed25519.age;
"jefke_host_ed25519".file = ./secrets/jefke_host_ed25519.age; "user_ed25519".file = ./secrets/${machine.name}_user_ed25519.age;
"jefke_user_ed25519".file = ./secrets/jefke_user_ed25519.age;
}; };
}; };
} }

View file

@ -1,4 +1,4 @@
{ pkgs, config, ... }: { { pkgs, config, machine, ... }: {
imports = [ ./hardware-configuration.nix ./disk-config.nix ./agenix.nix ]; imports = [ ./hardware-configuration.nix ./disk-config.nix ./agenix.nix ];
boot.loader = { boot.loader = {
@ -31,10 +31,9 @@
PasswordAuthentication = false; PasswordAuthentication = false;
KbdInteractiveAuthentication = false; KbdInteractiveAuthentication = false;
}; };
# TODO! machine independent
extraConfig = '' extraConfig = ''
HostCertificate ${builtins.toFile "jefke_host_ed25519-cert.pub" (builtins.readFile ./jefke_host_ed25519-cert.pub)} HostCertificate ${builtins.toFile "host_ed25519-cert.pub" machine.host-cert}
HostKey ${config.age.secrets.jefke_host_ed25519.path} HostKey ${config.age.secrets.host_ed25519.path}
''; '';
}; };
@ -66,10 +65,9 @@
}; };
}; };
# TODO: machine independent
extraConfig = '' extraConfig = ''
CertificateFile ${builtins.toFile "jefke_user_ed25519-cert.pub" (builtins.readFile ./jefke_user_ed25519-cert.pub)} CertificateFile ${builtins.toFile "user_ed25519-cert.pub" machine.user-cert}
HostKey ${config.age.secrets.jefke_user_ed25519.path} HostKey ${config.age.secrets.user_ed25519.path}
''; '';
}; };

View file

@ -20,33 +20,55 @@
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
pkgs-unstable = nixpkgs-unstable.legacyPackages.${system}; pkgs-unstable = nixpkgs-unstable.legacyPackages.${system};
machines = {
jefke = {
name = "jefke";
hostname = "jefke.hyp";
user-cert = builtins.readFile ./jefke_user_ed25519-cert.pub;
host-cert = builtins.readFile ./jefke_host_ed25519-cert.pub;
};
};
in { in {
devShells.${system}.default = pkgs.mkShell { devShells.${system}.default = pkgs.mkShell {
packages = with pkgs-unstable; [ libsecret nixos-anywhere ]; packages = [
pkgs.libsecret
pkgs-unstable.nixos-anywhere
pkgs-unstable.deploy-rs
];
}; };
formatter = pkgs.nixfmt; # TODO. if uncommented, nix flake check fails
# formatter = pkgs.nixfmt;
nixosConfigurations.hypervisor = nixpkgs.lib.nixosSystem { # TODO create helper
nixosConfigurations = nixpkgs.lib.foldlAttrs (acc: name: machine:
acc // {
"${name}" = nixpkgs.lib.nixosSystem {
inherit system; inherit system;
specialArgs = { inherit machine; };
modules = [ modules = [
disko.nixosModules.disko disko.nixosModules.disko
agenix.nixosModules.default agenix.nixosModules.default
./configuration.nix ./configuration.nix
]; ];
}; };
}) { } machines;
deploy = { deploy = {
sshUser = "root"; sshUser = "root";
user = "root"; user = "root";
nodes.jefke = { # TODO create helper
hostname = "jefke.hyp"; nodes = nixpkgs.lib.foldlAttrs (acc: name: machine:
acc // {
"${name}" = {
hostname = machine.hostname;
profiles.hypervisor = { profiles.hypervisor = {
path = deploy-rs.lib.${system}.activate.nixos path = deploy-rs.lib.${system}.activate.nixos
self.nixosConfigurations.hypervisor; self.nixosConfigurations.${name};
}; };
}; };
}) { } machines;
}; };
checks = builtins.mapAttrs checks = builtins.mapAttrs