revert nur flake input

add homeage flake input
This commit is contained in:
Pim Kunis 2023-10-09 20:56:41 +02:00
parent 848a040202
commit d0e1490628
4 changed files with 36 additions and 9 deletions

View file

@ -8,6 +8,10 @@
url = "https://github.com/nix-community/home-manager/archive/release-23.05.tar.gz";
inputs.nixpkgs.follows = "nixpkgs";
};
homeage = {
url = "github:jordanisaacs/homeage";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { nixpkgs, home-manager, nur, ... }: {
@ -15,9 +19,11 @@
pim = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
{ nixpkgs.overlays = [ nur.overlay ]; }
(args: home-manager.nixosModules.home-manager {
inherit (args) lib pkgs config utils;
./configuration.nix
# { nixpkgs.overlays = [ nur.overlay ]; }
# (args: home-manager.nixosModules.home-manager {
home-manager.nixosModules.home-manager {
# inherit (args) lib pkgs config utils;
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.pim = {
@ -25,8 +31,7 @@
./home/home.nix
];
};
})
./configuration.nix
}
];
};
};