feat: foundation for secrets under NixOS

This commit is contained in:
Kat Inskip 2022-12-02 02:06:54 +01:00
parent ae7d7de111
commit bc01d35279
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
3 changed files with 182 additions and 3 deletions

View file

@ -15,6 +15,17 @@
url = "github:kittywitch/tree";
inputs.nixpkgs.follows = "nixpkgs";
};
ragenix = {
url = "github:yaxitech/ragenix";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};
scalpel = {
url = "github:polygon/scalpel";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { ... }@inputs: import ./default.nix inputs;
}