config.nix/hosts/marty-latitude/home.nix
2026-05-14 09:31:11 +02:00

20 lines
271 B
Nix

{
config,
pkgs,
inputs,
lib,
osConfig,
...
}:
{
home.username = osConfig.user.userName;
home.homeDirectory = "/home/${osConfig.user.userName}";
home.stateVersion = "25.11";
imports = [
./../../home
];
programs.home-manager.enable = true;
}