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";
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||||
|
|
||||||
# disko - Declarative disk partitioning and formatting using nix
|
# 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
|
# home-manager - unstable
|
||||||
# https://github.com/nix-community/home-manager
|
# https://github.com/nix-community/home-manager
|
||||||
|
@ -52,11 +55,13 @@
|
||||||
# https://github.com/bluskript/nix-inspect
|
# https://github.com/bluskript/nix-inspect
|
||||||
nix-inspect = {
|
nix-inspect = {
|
||||||
url = "github:bluskript/nix-inspect";
|
url = "github:bluskript/nix-inspect";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
# talhelper - A tool to help creating Talos kubernetes cluster
|
# talhelper - A tool to help creating Talos kubernetes cluster
|
||||||
talhelper = {
|
talhelper = {
|
||||||
url = "github:budimanjojo/talhelper";
|
url = "github:budimanjojo/talhelper";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue