NixOSDots/hosts/macos/home.nix
2025-12-13 12:48:45 +01:00

16 lines
272 B
Nix

{
# Refer to the nixOS host for info about home-manager
home.username = "alex";
home.homeDirectory = "/Users/alex";
imports = [
inputs.spicetify-nix.homeMamangerModules.spicetify
];
home.stateVersion = "25.11";
home.packages = [
pkgs.hello
];
}