From 361ed098b4a3f84c057a426827a37ee872224869 Mon Sep 17 00:00:00 2001 From: materus Date: Sun, 25 Feb 2024 18:09:09 +0100 Subject: [PATCH] inputs: add devshell, git-agecrypt, base16, flake-utils --- flake.nix | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/flake.nix b/flake.nix index cf3f8c1..3175db1 100644 --- a/flake.nix +++ b/flake.nix @@ -7,6 +7,31 @@ repo = "nixpkgs"; ref = "nixos-unstable"; }; + + flake-utils = { + type = "github"; + owner = "numtide"; + repo = "flake-utils"; + ref = "main"; + }; + + base16 = { + type = "github"; + owner = "SenchoPens"; + repo = "base16.nix"; + ref = "main"; + }; + + devshell = { + type = "github"; + owner = "numtide"; + repo = "devshell"; + ref = "main"; + inputs = { + nixpkgs.follows = "nixpkgs"; + flake-utils.follows = "flake-utils"; + }; + }; home-manager = { type = "github"; @@ -25,6 +50,7 @@ ref = "master"; inputs = { nixpkgs.follows = "nixpkgs"; + flake-utils.follows = "flake-utils"; }; }; @@ -56,6 +82,17 @@ }; }; + git-agecrypt = { + type = "github"; + owner = "vlaci"; + repo = "git-agecrypt"; + ref = "main"; + inputs = { + nixpkgs.follows = "nixpkgs"; + flake-utils.follows = "flake-utils"; + }; + }; + nur = { type = "github"; owner = "nix-community";