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
|
|
|
|
2023-11-17 03:29:35 +01:00
|
|
|
stateVersion = "23.11";
|
2023-11-04 02:28:27 +01:00
|
|
|
};
|
|
|
|
}
|