mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 08:19:47 +01:00
15 lines
238 B
Nix
15 lines
238 B
Nix
{
|
|
# Refer to the nixOS host for info about home-manager
|
|
home.username = "alex";
|
|
home.homeDirecotry = "/Users/alex";
|
|
|
|
home.stateVersion = "25.11";
|
|
|
|
home.packages = [
|
|
pkgs.hello
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
}
|