inputs init

This commit is contained in:
Mateusz Słodkowicz 2023-10-08 16:13:36 +02:00
parent f25e201e50
commit f86ef1c2db
Signed by: materus
GPG Key ID: 28D140BCA60B4FD1
1 changed files with 21 additions and 10 deletions

View File

@ -7,18 +7,31 @@
repo = "nixpkgs";
ref = "nixos-unstable";
};
private = {
home-manager = {
type = "github";
owner = "materusPL";
repo = "Nixerus";
ref = "mock";
};
configInputs = {
url = "path:./inputs";
owner = "nix-community";
repo = "home-manager";
ref = "master";
inputs = {
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
rec {
nixosConfigurations = import ./configurations/host { inherit inputs; materusFlake = self; };
homeConfigurations = import ./configurations/home { inherit inputs; materusFlake = self; };
selfPath = ./.;
inherit inputs;
};
}