From f8baec1bb36bbd02bc4e06a8c5075e18720b3cd0 Mon Sep 17 00:00:00 2001 From: ChUrl Date: Fri, 1 Jul 2022 15:29:31 +0200 Subject: [PATCH] Remove old HomeMManager standalone config --- flake.nix | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/flake.nix b/flake.nix index e201b5bb..e1f1c386 100644 --- a/flake.nix +++ b/flake.nix @@ -81,38 +81,5 @@ specialArgs = { inherit inputs; }; }; }; - - # Home configurations standalone - # Accessible via 'home-manager' - # homeConfigurations = { - # # We give our configuration a name (the user + hostname). - # # This makes it easy to add configurations for different users/PCs. - # # Usage: home-manager switch --flake .#christoph@nixinator - # "christoph@nixinator" = home-manager.lib.homeManagerConfiguration rec { - # pkgs = nixpkgs.legacyPackages."x86_64-linux"; # HomeManager needs this since 22.11 release - - # modules = [ - # # >> Main HomeManager configuration file << - # ./home/home.nix - - # { - # home = rec { - # username = "christoph"; - # homeDirectory = "/home/${username}"; - # stateVersion = "22.05"; - # }; - - # # Add the overlays - # # TODO: I guess attrValues unpacks the overlays set or smth? - # nixpkgs.overlays = attrValues overlays; - # } - # ]; - - # # Make our inputs available to the config (for importing modules) - # extraSpecialArgs = { - # inherit inputs; - # }; - # }; - # }; }; }