first commit.
This commit is contained in:
commit
871f508815
40 changed files with 507 additions and 0 deletions
24
flake.nix
Normal file
24
flake.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
agenix.url = "github:ryantm/agenix";
|
||||
};
|
||||
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
flake-utils,
|
||||
...
|
||||
} @ inputs: let
|
||||
overlays = [inputs.agenix.overlays.default];
|
||||
in
|
||||
flake-utils.lib.eachDefaultSystem (system: let
|
||||
pkgs = import nixpkgs {inherit system overlays;};
|
||||
in {
|
||||
devShells = {
|
||||
default = pkgs.mkShell {buildInputs = with pkgs; [agenix];};
|
||||
};
|
||||
secrets = ./secrets;
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue