diff --git a/hosts/macos/home.nix b/hosts/macos/home.nix index 0bb92dc..aa056a3 100644 --- a/hosts/macos/home.nix +++ b/hosts/macos/home.nix @@ -1,14 +1,15 @@ { # Refer to the nixOS host for info about home-manager home.username = "alex"; - home.homeDirecotry = "/Users/alex"; + home.homeDirectory = "/Users/alex"; + + imports = [ + inputs.spicetify-nix.homeMamangerModules.spicetify + ]; home.stateVersion = "25.11"; home.packages = [ pkgs.hello ]; - - programs.home-manager.enable = true; - } diff --git a/hosts/nixos/configuration.nix b/hosts/nixos/configuration.nix index 9cd865b..16d7566 100644 --- a/hosts/nixos/configuration.nix +++ b/hosts/nixos/configuration.nix @@ -9,7 +9,6 @@ [ # Include the results of the hardware scan. ./hardware-configuration.nix ./modules.nix - #inputs.home-manager.nixosModules.default ]; # Bootloader. diff --git a/hosts/nixos/home.nix b/hosts/nixos/home.nix index 21687b1..3fe5206 100644 --- a/hosts/nixos/home.nix +++ b/hosts/nixos/home.nix @@ -7,7 +7,7 @@ home.homeDirectory = "/home/alex"; imports = [ - inputs.spicetify-nix.homeManagerModules + inputs.spicetify-nix.homeManagerModules.spicetify ../../modules/home-manager/spicetify.nix ]; @@ -122,7 +122,4 @@ home.sessionVariables = { # EDITOR = "emacs"; }; - - # Let Home Manager install and manage itself. - #programs.home-manager.enable = true; }