nixconfig/modules/home/base/default.nix
soraefir 5d68b291ba
All checks were successful
Nix Build / build-nixos (push) Successful in 26m31s
Fix & Update versions
2024-11-21 01:21:48 +01:00

13 lines
257 B
Nix

{ lib, config, ... }: {
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;
home = {
username = "${config.usercfg.username}";
homeDirectory = "/home/${config.usercfg.username}";
stateVersion = "24.11";
};
}