X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=modules%2Fsecrets.nix;h=a2424e920fd78eb62021fb70bfb4db8bedb53e73;hb=HEAD;hp=a149f02ca9baeb873b26d6732102b5944caf8c4d;hpb=34abd6afa44c620a56416bd423a2438a09bd1ce4;p=perso%2FImmae%2FConfig%2FNix.git diff --git a/modules/secrets.nix b/modules/secrets.nix deleted file mode 100644 index a149f02..0000000 --- a/modules/secrets.nix +++ /dev/null @@ -1,73 +0,0 @@ -{ lib, pkgs, config, ... }: -{ - options.secrets = { - keys = lib.mkOption { - type = lib.types.listOf lib.types.unspecified; - default = []; - description = "Keys to upload to server"; - }; - location = lib.mkOption { - type = lib.types.path; - default = "/var/secrets"; - description = "Location where to put the keys"; - }; - # Read-only variables - fullPaths = lib.mkOption { - type = lib.types.attrsOf lib.types.path; - default = builtins.listToAttrs - (map (v: { name = v.dest; value = "${config.secrets.location}/${v.dest}"; }) config.secrets.keys); - readOnly = true; - description = "set of full paths to secrets"; - }; - }; - - config = let - location = config.secrets.location; - keys = config.secrets.keys; - empty = pkgs.runCommand "empty" { preferLocalBuild = true; } "mkdir -p $out && touch $out/done"; - dumpKey = v: '' - mkdir -p secrets/$(dirname ${v.dest}) - echo -n ${lib.strings.escapeShellArg v.text} > secrets/${v.dest} - cat >> mods < 0) { - system.activationScripts.secrets = { - deps = [ "users" "wrappers" ]; - text = '' - install -m0750 -o root -g keys -d ${location} - if [ -f /run/keys/secrets.tar ]; then - if [ ! -f ${location}/currentSecrets ] || ! sha512sum -c --status "${location}/currentSecrets"; then - echo "rebuilding secrets" - TMP=$(${pkgs.coreutils}/bin/mktemp -d) - if [ -n "$TMP" ]; then - install -m0750 -o root -g keys -d $TMP - ${pkgs.gnutar}/bin/tar --strip-components 1 -C $TMP -xf /run/keys/secrets.tar - sha512sum /run/keys/secrets.tar > $TMP/currentSecrets - find $TMP -type d -exec chown root:keys {} \; -exec chmod o-rx {} \; - ${pkgs.rsync}/bin/rsync -O -c -av --delete $TMP/ ${location} - rm -rf $TMP - fi - fi - fi - ''; - }; - system.extraDependencies = [ secrets ]; - deployment.secrets."secrets.tar" = { - source = "${secrets}"; - destination = "/run/keys/secrets.tar"; - owner.user = "root"; - owner.group = "root"; - permissions = "0400"; - }; - }; -}