mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 08:19:47 +01:00
16 lines
272 B
Nix
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
|
|
];
|
|
}
|