From 7273f2102a525e4185f9ba9e3af3e033c4a3e59f Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 25 Sep 2021 13:30:51 +0200 Subject: [PATCH] flake: add 'agenix' --- flake.lock | 22 ++++++++++++++++++++++ flake.nix | 11 +++++++++++ 2 files changed, 33 insertions(+) diff --git a/flake.lock b/flake.lock index 3125d0e..775651c 100644 --- a/flake.lock +++ b/flake.lock @@ -1,5 +1,26 @@ { "nodes": { + "agenix": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1631896269, + "narHash": "sha256-DAyCxJ8JacayOzGgGSfzrn7ghtsfL/EsCyk1NEUaAR8=", + "owner": "ryantm", + "repo": "agenix", + "rev": "daf1d773989ac5d949aeef03fce0fe27e583dbca", + "type": "github" + }, + "original": { + "owner": "ryantm", + "ref": "master", + "repo": "agenix", + "type": "github" + } + }, "futils": { "locked": { "lastModified": 1629481132, @@ -95,6 +116,7 @@ }, "root": { "inputs": { + "agenix": "agenix", "futils": "futils", "home-manager": "home-manager", "nixpkgs": "nixpkgs", diff --git a/flake.nix b/flake.nix index 5abaac9..84186e0 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,16 @@ { description = "NixOS configuration with flakes"; inputs = { + agenix = { + type = "github"; + owner = "ryantm"; + repo = "agenix"; + ref = "master"; + inputs = { + nixpkgs.follows = "nixpkgs"; + }; + }; + futils = { type = "github"; owner = "numtide"; @@ -47,6 +57,7 @@ outputs = inputs @ { self + , agenix , futils , home-manager , nixpkgs