Add secret support

This commit is contained in:
Jack O'Sullivan 2022-02-22 00:59:57 +00:00
parent ac31486f6b
commit 8c61cea30d
19 changed files with 71 additions and 11 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
result*
/.vms/*
!/.vms/.gitkeep
/.keys/*.key

0
.keys/.gitkeep Normal file
View File

1
.keys/deploy.pub Normal file
View File

@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAzBEJKVa7WFxY5EOqcxP1b+hrJiaPggFzJx8dlFAmug nixfiles-deploy

1
.keys/dev.pub Normal file
View File

@ -0,0 +1 @@
age1lm7la8qmu3rx89yvtdqz0m9l3fr96vf4nsqg6tpsv8yskzw7zgtqwt8lmu

View File

@ -35,6 +35,12 @@ in
help = "Remove home-manager flake.nix link";
command = "rm -f ${homeFlake}";
}
{
name = "agenix";
category = "utilities";
help = pkgs.agenix.meta.description;
command = ''exec ${pkgs.agenix}/bin/agenix --identity "$PRJ_ROOT/.keys/dev.key" "$@"'';
}
{
name = "fmt";

View File

@ -18,7 +18,7 @@ in
packages = with pkgs; [
coreutils
nixVersions.stable
agenix
rage
deploy-rs.deploy-rs
home-manager
];

View File

@ -107,6 +107,8 @@
inherit lib pkgsFlakes hmFlakes inputs;
pkgs' = configPkgs';
};
nixos.secretsPath = ./secrets;
}
# Not an internal part of the module system apparently, but it doesn't have any dependencies other than lib
@ -120,9 +122,8 @@
in
# Platform independent stuff
{
lib = lib.my;
nixpkgs = pkgs';
inherit nixfiles;
inherit lib nixfiles;
nixosModules = nixfiles.config.nixos.modules;
homeModules = nixfiles.config.home-manager.modules;

View File

@ -27,7 +27,7 @@ in
ssh = {
authKeys = {
literal = mkOpt' (listOf singleLineStr) [ ] "List of OpenSSH keys to allow";
files = mkOpt' (listOf str) [ ] "List of OpenSSH key files to allow";
files = mkOpt' (listOf path) [ ] "List of OpenSSH key files to allow";
};
};
};
@ -226,7 +226,7 @@ in
})
(mkIf config.my.isStandalone {
my = {
ssh.authKeys.files = [ lib.my.authorizedKeys ];
ssh.authKeys.files = [ lib.my.sshKeyFiles.me ];
};
fonts.fontconfig.enable = true;

View File

@ -132,5 +132,8 @@ rec {
filterOpts = filterAttrsRecursive (_: v: v != null);
};
authorizedKeys = toString ./authorized_keys;
sshKeyFiles = {
me = .keys/me.pub;
deploy = .keys/deploy.key;
};
}

View File

@ -13,6 +13,11 @@
imports = [ "${modulesPath}/profiles/qemu-guest.nix" ];
my = {
secrets = {
key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINkqdN5t3UKwrNOOPKlbnG1WYhnkV5H9luAzMotr8SbT";
files."test.txt" = {};
};
firewall = {
trustedInterfaces = [ "blah" ];
nat = {

View File

@ -52,6 +52,7 @@ let
];
_module.args = {
inherit (cfg) secretsPath;
pkgs' = allPkgs;
};
@ -121,6 +122,7 @@ in
options = with lib.types; {
nixos = {
secretsPath = mkOpt' path null "Path to encrypted secret files.";
modules = mkOpt' (attrsOf commonOpts.moduleType) { } "NixOS modules to be exported by nixfiles.";
systems = mkOpt' (attrsOf (submodule systemOpts)) { } "NixOS systems to be exported by nixfiles.";
};

View File

@ -33,7 +33,7 @@
environment.sessionVariables = {
INSTALL_ROOT = installRoot;
};
users.users.root.openssh.authorizedKeys.keyFiles = [ lib.my.authorizedKeys ];
users.users.root.openssh.authorizedKeys.keyFiles = [ lib.my.sshKeyFiles.deploy ];
home-manager.users.root = {
programs = {
starship.settings = {

View File

@ -8,5 +8,6 @@
firewall = ./firewall.nix;
server = ./server.nix;
deploy-rs = ./deploy-rs.nix;
secrets = ./secrets.nix;
};
}

View File

@ -10,7 +10,7 @@ in
options.my.deploy = with lib.types; {
authorizedKeys = {
keys = mkOpt' (listOf singleLineStr) [ ] "SSH public keys to add to the default deployment user.";
keyFiles = mkOpt' (listOf str) [ ] "SSH public key files to add to the default deployment user.";
keyFiles = mkOpt' (listOf path) [ lib.my.sshKeyFiles.deploy ] "SSH public key files to add to the default deployment user.";
};
enable = mkBoolOpt' true "Whether to expose deploy-rs configuration for this system.";

17
nixos/modules/secrets.nix Normal file
View File

@ -0,0 +1,17 @@
{ lib, config, secretsPath, ... }:
let
inherit (builtins) mapAttrs;
inherit (lib.my) mkOpt';
cfg = config.my.secrets;
in
{
options.my.secrets = with lib.types; {
key = mkOpt' (nullOr str) null "Public key that secrets for this system should be encrypted for.";
files = mkOpt' (attrsOf unspecified) { } "Secrets to decrypt with agenix.";
};
config.age.secrets = mapAttrs (f: opts: {
file = "${secretsPath}/${f}.age";
} // opts) cfg.files;
}

View File

@ -35,14 +35,12 @@ in
shell =
let shell = cfg.homeConfig.my.shell;
in mkIf (shell != null) (mkDefault' shell);
openssh.authorizedKeys.keyFiles = [ lib.my.authorizedKeys ];
openssh.authorizedKeys.keyFiles = [ lib.my.sshKeyFiles.me ];
};
# In order for this option to evaluate on its own, home-manager expects the `name` (which is derived from the
# parent attr name) to be the users name, aka `home-manager.users.<name>`
homeConfig = { _module.args.name = lib.mkForce user'.name; };
};
deploy.authorizedKeys = mkDefault user'.openssh.authorizedKeys;
};
# mkAliasDefinitions will copy the unmerged defintions to allow the upstream submodule to deal with

24
secrets.nix Normal file
View File

@ -0,0 +1,24 @@
let
self = getFlake (toString ./.);
inherit (self) lib;
inherit (builtins) mapAttrs attrValues readFile getFlake;
inherit (lib) optional flatten zipAttrsWith nameValuePair mapAttrs';
secretPath = p: "secrets/${p}.age";
defaultKeys = [
(readFile .keys/dev.pub)
];
secretKeys =
zipAttrsWith
(_: keys: flatten (keys ++ defaultKeys))
(map
(c: let cfg = c.config.my.secrets; in mapAttrs'
(f: _: nameValuePair
(secretPath f)
(optional (cfg.key != null) cfg.key))
cfg.files)
(attrValues self.nixosConfigurations));
in
mapAttrs (_: keys: { publicKeys = keys; }) secretKeys

BIN
secrets/test.txt.age Normal file

Binary file not shown.