inputs init
This commit is contained in:
parent
f25e201e50
commit
f86ef1c2db
31
flake.nix
31
flake.nix
|
@ -7,18 +7,31 @@
|
||||||
repo = "nixpkgs";
|
repo = "nixpkgs";
|
||||||
ref = "nixos-unstable";
|
ref = "nixos-unstable";
|
||||||
};
|
};
|
||||||
private = {
|
home-manager = {
|
||||||
type = "github";
|
type = "github";
|
||||||
owner = "materusPL";
|
owner = "nix-community";
|
||||||
repo = "Nixerus";
|
repo = "home-manager";
|
||||||
ref = "mock";
|
ref = "master";
|
||||||
};
|
|
||||||
configInputs = {
|
|
||||||
url = "path:./inputs";
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.follows = "nixpkgs";
|
nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
emacs-overlay = {
|
||||||
|
type = "github";
|
||||||
|
owner = "nix-community";
|
||||||
|
repo = "emacs-overlay";
|
||||||
|
ref = "master";
|
||||||
|
inputs = {
|
||||||
|
nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
nur = {
|
||||||
|
type = "github";
|
||||||
|
owner = "nix-community";
|
||||||
|
repo = "NUR";
|
||||||
|
ref = "master";
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -33,9 +46,7 @@
|
||||||
in
|
in
|
||||||
rec {
|
rec {
|
||||||
|
|
||||||
nixosConfigurations = import ./configurations/host { inherit inputs; materusFlake = self; };
|
inherit inputs;
|
||||||
homeConfigurations = import ./configurations/home { inherit inputs; materusFlake = self; };
|
|
||||||
selfPath = ./.;
|
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue