As the home-manager depends on the actual used nixpkgs version and is not always used, remove it from the base dependencies but use still use it implictely if a home-manager input exists.
8 lines
196 B
Nix
8 lines
196 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
|
|
hardware.url = "github:nixos/nixos-hardware";
|
|
};
|
|
|
|
outputs = { self, ... }@inputs: import ./lib/flake.nix inputs ./.;
|
|
}
|