feat: add sops-nix input
This commit is contained in:
parent
5c153d3b08
commit
01092ee7ef
4 changed files with 68 additions and 4 deletions
10
flake.nix
10
flake.nix
|
@ -11,8 +11,12 @@
|
|||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
sops-nix = {
|
||||
url = "github:Mic92/sops-nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
outputs = { self, nixpkgs, home-manager, nur, nixgl, ... }@inputs:
|
||||
outputs = { self, nixpkgs, home-manager, nur, nixgl, sops-nix, ... }@inputs:
|
||||
let
|
||||
stateVersion = "23.11";
|
||||
|
||||
|
@ -28,7 +32,9 @@ in {
|
|||
devShells = forAllSystems ({ pkgs }: {
|
||||
default = pkgs.mkShell {
|
||||
name = "nixfiles";
|
||||
buildInputs = [
|
||||
buildInputs = [
|
||||
pkgs.sops
|
||||
pkgs.age
|
||||
pkgs.shellcheck
|
||||
pkgs.shfmt
|
||||
pkgs.lefthook
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue