From 0c58bb325f273f588f59ca73cbb1beea3d42f95e Mon Sep 17 00:00:00 2001 From: CherryKitten Date: Sat, 1 Jun 2024 20:03:44 +0200 Subject: [PATCH] i don't use standalone home-manager anymore, so bye bye it goes --- flake.nix | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/flake.nix b/flake.nix index 5f939b5..1ed528f 100644 --- a/flake.nix +++ b/flake.nix @@ -77,20 +77,6 @@ ); packages.x86_64-linux.iso = self.nixosConfigurations.iso.config.system.build.isoImage; - - homeConfigurations = - let - pkgs = import nixpkgs { system = "x86_64-linux"; }; - in - nixpkgs.lib.genAttrs (builtins.attrNames (builtins.readDir ./users)) (name: home-manager.lib.homeManagerConfiguration { - inherit pkgs; - modules = [ ./users/${name}/home.nix ]; - extraSpecialArgs = { - inherit inputs; - flake = self; - pkgs-unstable = import nixpkgs-unstable { system = "x86_64-linux"; }; - }; - }); }; }; }