17 lines
348 B
Nix
17 lines
348 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
../modules/home
|
|
];
|
|
|
|
home.username = "mans";
|
|
home.homeDirectory = "/home/mans";
|
|
|
|
# See https://nix-community.github.io/home-manager/options.xhtml#opt-home.stateVersion
|
|
# Pin to the release used at install time; do not bump on upgrades.
|
|
home.stateVersion = "25.11";
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|