Fixed HM and Spicetify

This commit is contained in:
Alexandre 2025-12-13 12:48:45 +01:00
parent b0e57167ce
commit fb18142302
3 changed files with 6 additions and 9 deletions

View File

@ -1,14 +1,15 @@
{ {
# Refer to the nixOS host for info about home-manager # Refer to the nixOS host for info about home-manager
home.username = "alex"; home.username = "alex";
home.homeDirecotry = "/Users/alex"; home.homeDirectory = "/Users/alex";
imports = [
inputs.spicetify-nix.homeMamangerModules.spicetify
];
home.stateVersion = "25.11"; home.stateVersion = "25.11";
home.packages = [ home.packages = [
pkgs.hello pkgs.hello
]; ];
programs.home-manager.enable = true;
} }

View File

@ -9,7 +9,6 @@
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
./modules.nix ./modules.nix
#inputs.home-manager.nixosModules.default
]; ];
# Bootloader. # Bootloader.

View File

@ -7,7 +7,7 @@
home.homeDirectory = "/home/alex"; home.homeDirectory = "/home/alex";
imports = [ imports = [
inputs.spicetify-nix.homeManagerModules inputs.spicetify-nix.homeManagerModules.spicetify
../../modules/home-manager/spicetify.nix ../../modules/home-manager/spicetify.nix
]; ];
@ -122,7 +122,4 @@
home.sessionVariables = { home.sessionVariables = {
# EDITOR = "emacs"; # EDITOR = "emacs";
}; };
# Let Home Manager install and manage itself.
#programs.home-manager.enable = true;
} }