1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 23:00:39 +02:00

feat: remove recipients.txt in favor of nix run '.#edit-secret'

This commit is contained in:
oddlama 2023-02-03 21:11:32 +01:00
parent 587703c157
commit 7cabb98064
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
4 changed files with 24 additions and 38 deletions

View file

@ -8,11 +8,6 @@
inputs.flake-utils.follows = "flake-utils";
};
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
@ -27,7 +22,6 @@
url = "github:cachix/pre-commit-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
inputs.flake-compat.follows = "flake-compat";
};
agenix-rekey.url = "github:oddlama/agenix-rekey";
@ -54,6 +48,8 @@
colmena = import ./nix/colmena.nix inputs;
overlays = import ./nix/overlay.nix inputs;
homeConfigurations = import ./nix/home-manager.nix inputs;
inherit ((colmena.lib.makeHive self.colmena).introspect (x: x)) nodes;
}
// flake-utils.lib.eachDefaultSystem (system: rec {
checks = import ./nix/checks.nix inputs system;
@ -76,9 +72,6 @@
config.allowUnfree = true;
};
apps = let
inherit ((colmena.lib.makeHive self.colmena).introspect (x: x)) nodes;
in
agenix-rekey.defineApps inputs system nodes;
apps = agenix-rekey.defineApps self pkgs self.nodes;
});
}