preventing duplicate nixpkgs
This commit is contained in:
parent
8178395e3c
commit
46c5e21cc1
1 changed files with 6 additions and 1 deletions
|
@ -18,7 +18,10 @@
|
|||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||
|
||||
# disko - Declarative disk partitioning and formatting using nix
|
||||
disko.url = "github:nix-community/disko";
|
||||
disko = {
|
||||
url = "github:nix-community/disko";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
# home-manager - unstable
|
||||
# https://github.com/nix-community/home-manager
|
||||
|
@ -52,11 +55,13 @@
|
|||
# https://github.com/bluskript/nix-inspect
|
||||
nix-inspect = {
|
||||
url = "github:bluskript/nix-inspect";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
# talhelper - A tool to help creating Talos kubernetes cluster
|
||||
talhelper = {
|
||||
url = "github:budimanjojo/talhelper";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue