feat: extract rekeying as separate repo

This commit is contained in:
oddlama 2023-01-30 22:03:39 +01:00
parent 7c6461d8e2
commit 266945d242
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
7 changed files with 50 additions and 185 deletions

View file

@ -33,8 +33,19 @@
inputs.flake-compat.follows = "flake-compat";
};
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
};
ragenix = {
url = "github:yaxitech/ragenix";
inputs.agenix.follows = "agenix";
inputs.flake-utils.follows = "flake-utils";
inputs.nixpkgs.follows = "nixpkgs";
};
agenix-rekey = {
url = "github:oddlama/agenix-rekey";
inputs.agenix.follows = "agenix";
inputs.flake-utils.follows = "flake-utils";
inputs.nixpkgs.follows = "nixpkgs";
};
@ -76,7 +87,5 @@
];
config.allowUnfree = true;
};
apps = {} // import ./apps/rekey.nix inputs localSystem;
});
}