mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-21 17:20:47 +03:00
contrib: format Nix code with Alejandra
This commit is contained in:
parent
99e0963743
commit
16bef569f4
6 changed files with 245 additions and 226 deletions
|
@ -1,8 +1,11 @@
|
||||||
{ config, options, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
with lib;
|
options,
|
||||||
|
lib,
|
||||||
let
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
cfg = config.age;
|
cfg = config.age;
|
||||||
|
|
||||||
# we need at least rage 0.5.0 to support ssh keys
|
# we need at least rage 0.5.0 to support ssh keys
|
||||||
|
@ -28,11 +31,15 @@ let
|
||||||
identities = builtins.concatStringsSep " " (map (path: "-i ${path}") cfg.identityPaths);
|
identities = builtins.concatStringsSep " " (map (path: "-i ${path}") cfg.identityPaths);
|
||||||
|
|
||||||
setTruePath = secretType: ''
|
setTruePath = secretType: ''
|
||||||
${if secretType.symlink then ''
|
${
|
||||||
|
if secretType.symlink
|
||||||
|
then ''
|
||||||
_truePath="${cfg.secretsMountPoint}/$_agenix_generation/${secretType.name}"
|
_truePath="${cfg.secretsMountPoint}/$_agenix_generation/${secretType.name}"
|
||||||
'' else ''
|
''
|
||||||
|
else ''
|
||||||
_truePath="${secretType.path}"
|
_truePath="${secretType.path}"
|
||||||
''}
|
''
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installSecret = secretType: ''
|
installSecret = secretType: ''
|
||||||
|
@ -55,9 +62,11 @@ let
|
||||||
''}
|
''}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
testIdentities = map (path: ''
|
testIdentities =
|
||||||
|
map (path: ''
|
||||||
test -f ${path} || echo '[agenix] WARNING: config.age.identityPaths entry ${path} not present!'
|
test -f ${path} || echo '[agenix] WARNING: config.age.identityPaths entry ${path} not present!'
|
||||||
'') cfg.identityPaths;
|
'')
|
||||||
|
cfg.identityPaths;
|
||||||
|
|
||||||
cleanupAndLink = ''
|
cleanupAndLink = ''
|
||||||
_agenix_generation="$(basename "$(readlink ${cfg.secretsDir})" || echo 0)"
|
_agenix_generation="$(basename "$(readlink ${cfg.secretsDir})" || echo 0)"
|
||||||
|
@ -92,7 +101,8 @@ let
|
||||||
chownSecrets = builtins.concatStringsSep "\n" (
|
chownSecrets = builtins.concatStringsSep "\n" (
|
||||||
["echo '[agenix] chowning...'"]
|
["echo '[agenix] chowning...'"]
|
||||||
++ [chownMountPoint]
|
++ [chownMountPoint]
|
||||||
++ (map chownSecret (builtins.attrValues cfg.secrets)));
|
++ (map chownSecret (builtins.attrValues cfg.secrets))
|
||||||
|
);
|
||||||
|
|
||||||
secretType = types.submodule ({config, ...}: {
|
secretType = types.submodule ({config, ...}: {
|
||||||
options = {
|
options = {
|
||||||
|
@ -140,9 +150,7 @@ let
|
||||||
symlink = mkEnableOption "symlinking secrets to their destination" // {default = true;};
|
symlink = mkEnableOption "symlinking secrets to their destination" // {default = true;};
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
(mkRenamedOptionModule ["age" "sshKeyPaths"] ["age" "identityPaths"])
|
(mkRenamedOptionModule ["age" "sshKeyPaths"] ["age" "identityPaths"])
|
||||||
];
|
];
|
||||||
|
@ -170,9 +178,11 @@ in
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
secretsMountPoint = mkOption {
|
secretsMountPoint = mkOption {
|
||||||
type = types.addCheck types.str
|
type =
|
||||||
|
types.addCheck types.str
|
||||||
(s:
|
(s:
|
||||||
(builtins.match "[ \t\n]*" s) == null # non-empty
|
(builtins.match "[ \t\n]*" s)
|
||||||
|
== null # non-empty
|
||||||
&& (builtins.match ".+/" s) == null) # without trailing slash
|
&& (builtins.match ".+/" s) == null) # without trailing slash
|
||||||
// {description = "${types.str.description} (with check: non-empty without trailing slash)";};
|
// {description = "${types.str.description} (with check: non-empty without trailing slash)";};
|
||||||
default = "/run/agenix.d";
|
default = "/run/agenix.d";
|
||||||
|
@ -184,8 +194,8 @@ in
|
||||||
identityPaths = mkOption {
|
identityPaths = mkOption {
|
||||||
type = types.listOf types.path;
|
type = types.listOf types.path;
|
||||||
default =
|
default =
|
||||||
if config.services.openssh.enable then
|
if config.services.openssh.enable
|
||||||
map (e: e.path) (lib.filter (e: e.type == "rsa" || e.type == "ed25519") config.services.openssh.hostKeys)
|
then map (e: e.path) (lib.filter (e: e.type == "rsa" || e.type == "ed25519") config.services.openssh.hostKeys)
|
||||||
else [];
|
else [];
|
||||||
description = ''
|
description = ''
|
||||||
Path to SSH keys to be used as identities in age decryption.
|
Path to SSH keys to be used as identities in age decryption.
|
||||||
|
@ -194,10 +204,12 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf (cfg.secrets != {}) {
|
config = mkIf (cfg.secrets != {}) {
|
||||||
assertions = [{
|
assertions = [
|
||||||
|
{
|
||||||
assertion = cfg.identityPaths != [];
|
assertion = cfg.identityPaths != [];
|
||||||
message = "age.identityPaths must be set.";
|
message = "age.identityPaths must be set.";
|
||||||
}];
|
}
|
||||||
|
];
|
||||||
|
|
||||||
# Create a new directory full of secrets for symlinking (this helps
|
# Create a new directory full of secrets for symlinking (this helps
|
||||||
# ensure removed secrets are actually removed, or at least become
|
# ensure removed secrets are actually removed, or at least become
|
||||||
|
@ -235,5 +247,4 @@ in
|
||||||
deps = ["agenixChown"];
|
deps = ["agenixChown"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
final: prev:
|
final: prev: {
|
||||||
{
|
|
||||||
agenix = prev.callPackage ./pkgs/agenix.nix {};
|
agenix = prev.callPackage ./pkgs/agenix.nix {};
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,9 +13,8 @@
|
||||||
if rage.version < "0.5.0"
|
if rage.version < "0.5.0"
|
||||||
then callPackage ./rage.nix {}
|
then callPackage ./rage.nix {}
|
||||||
else rage
|
else rage
|
||||||
}/bin/rage"
|
}/bin/rage",
|
||||||
} :
|
}: let
|
||||||
let
|
|
||||||
sedBin = "${gnused}/bin/sed";
|
sedBin = "${gnused}/bin/sed";
|
||||||
nixInstantiate = "${nix}/bin/nix-instantiate";
|
nixInstantiate = "${nix}/bin/nix-instantiate";
|
||||||
mktempBin = "${mktemp}/bin/mktemp";
|
mktempBin = "${mktemp}/bin/mktemp";
|
||||||
|
@ -183,7 +182,6 @@ function rekey {
|
||||||
[ $REKEY -eq 1 ] && rekey && exit 0
|
[ $REKEY -eq 1 ] && rekey && exit 0
|
||||||
edit "$FILE" && cleanup && exit 0
|
edit "$FILE" && cleanup && exit 0
|
||||||
'')
|
'')
|
||||||
|
|
||||||
{
|
{
|
||||||
meta.description = "age-encrypted secrets for NixOS";
|
meta.description = "age-encrypted secrets for NixOS";
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
{ stdenv, rustPlatform, fetchFromGitHub, installShellFiles, darwin }:
|
{
|
||||||
|
stdenv,
|
||||||
|
rustPlatform,
|
||||||
|
fetchFromGitHub,
|
||||||
|
installShellFiles,
|
||||||
|
darwin,
|
||||||
|
}:
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "rage";
|
pname = "rage";
|
||||||
version = "0.5.0";
|
version = "0.5.0";
|
||||||
|
@ -15,7 +20,8 @@ rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
nativeBuildInputs = [installShellFiles];
|
nativeBuildInputs = [installShellFiles];
|
||||||
|
|
||||||
buildInputs = with darwin.apple_sdk.frameworks; stdenv.lib.optionals stdenv.isDarwin [
|
buildInputs = with darwin.apple_sdk.frameworks;
|
||||||
|
stdenv.lib.optionals stdenv.isDarwin [
|
||||||
Security
|
Security
|
||||||
Foundation
|
Foundation
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,14 +1,20 @@
|
||||||
{
|
{
|
||||||
nixpkgs ? <nixpkgs>,
|
nixpkgs ? <nixpkgs>,
|
||||||
pkgs ? import <nixpkgs> { inherit system; config = {}; },
|
pkgs ?
|
||||||
system ? builtins.currentSystem
|
import <nixpkgs> {
|
||||||
|
inherit system;
|
||||||
|
config = {};
|
||||||
|
},
|
||||||
|
system ? builtins.currentSystem,
|
||||||
} @ args:
|
} @ args:
|
||||||
|
|
||||||
import "${nixpkgs}/nixos/tests/make-test-python.nix" ({pkgs, ...}: {
|
import "${nixpkgs}/nixos/tests/make-test-python.nix" ({pkgs, ...}: {
|
||||||
name = "agenix-integration";
|
name = "agenix-integration";
|
||||||
|
|
||||||
nodes.system1 = { config, lib, ... }: {
|
nodes.system1 = {
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
../modules/age.nix
|
../modules/age.nix
|
||||||
./install_ssh_host_keys.nix
|
./install_ssh_host_keys.nix
|
||||||
|
@ -30,11 +36,9 @@ import "${nixpkgs}/nixos/tests/make-test-python.nix" ({ pkgs, ...}: {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
testScript =
|
testScript = let
|
||||||
let
|
|
||||||
user = "user1";
|
user = "user1";
|
||||||
password = "password1234";
|
password = "password1234";
|
||||||
in ''
|
in ''
|
||||||
|
@ -55,4 +59,5 @@ import "${nixpkgs}/nixos/tests/make-test-python.nix" ({ pkgs, ...}: {
|
||||||
system1.wait_for_file("/tmp/1")
|
system1.wait_for_file("/tmp/1")
|
||||||
assert "${user}" in system1.succeed("cat /tmp/1")
|
assert "${user}" in system1.succeed("cat /tmp/1")
|
||||||
'';
|
'';
|
||||||
}) args
|
})
|
||||||
|
args
|
||||||
|
|
Loading…
Reference in a new issue