feat: add sops-nix input

This commit is contained in:
Yorick Barbanneau 2024-09-25 21:38:31 +02:00
parent 5c153d3b08
commit 01092ee7ef
4 changed files with 68 additions and 4 deletions

View file

@ -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