nixconfig/modules/home/base/default.nix

13 lines
257 B
Nix
Raw Normal View History

2023-11-16 23:06:28 +01:00
{ lib, config, ... }: {
2023-11-04 02:28:27 +01:00
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;
home = {
2024-04-14 07:57:07 +02:00
username = "${config.usercfg.username}";
homeDirectory = "/home/${config.usercfg.username}";
2023-11-04 02:28:27 +01:00
2024-11-21 01:21:48 +01:00
stateVersion = "24.11";
2023-11-04 02:28:27 +01:00
};
}