From f86ef1c2db734b01483ea8ad66cea91632eeb395 Mon Sep 17 00:00:00 2001 From: materus Date: Sun, 8 Oct 2023 16:13:36 +0200 Subject: [PATCH] inputs init --- flake.nix | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/flake.nix b/flake.nix index 502a59e..7175bb5 100644 --- a/flake.nix +++ b/flake.nix @@ -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; }; }