diff --git a/flake.nix b/flake.nix index e6726ed..6ef8ebb 100644 --- a/flake.nix +++ b/flake.nix @@ -61,7 +61,12 @@ # > Our main nixos configuration file < ./nixos/hosts/EDI/configuration.nix sops-nix.nixosModules.sops - plasma-manager.homeManagerModules.plasma-manager + home-manager.nixosModules.home-manager + { + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.sharedModules = [plasma-manager.homeManagerModules.plasma-manager]; + } ]; }; }; @@ -74,8 +79,12 @@ # > Our main nixos configuration file < ./nixos/hosts/GLaDOS/configuration.nix sops-nix.nixosModules.sops - plasma-manager.homeManagerModules.plasma-manager home-manager.nixosModules.home-manager + { + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.sharedModules = [plasma-manager.homeManagerModules.plasma-manager]; + } ]; }; }; diff --git a/home-manager/desktop/configuration.nix b/home-manager/desktop/configuration.nix index e9669b3..4d896bc 100644 --- a/home-manager/desktop/configuration.nix +++ b/home-manager/desktop/configuration.nix @@ -123,6 +123,11 @@ enable = true; userEmail = "git@lillianviolet.dev"; userName = "Lillian-Violet"; + extraConfig = { + init = { + defaultBranch = "main"; + }; + }; }; # Nicely reload system units when changing configs