inputs: add devshell, git-agecrypt, base16, flake-utils

This commit is contained in:
Mateusz Słodkowicz 2024-02-25 18:09:09 +01:00
parent 748756208f
commit 361ed098b4
Signed by: materus
GPG Key ID: 28D140BCA60B4FD1
1 changed files with 37 additions and 0 deletions

View File

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