17 lines
308 B
Nix
17 lines
308 B
Nix
{myConfig, ...}: {
|
|
imports = [
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home = {
|
|
username = "${myConfig.username}";
|
|
homeDirectory = "/home/${myConfig.username}";
|
|
packages = [];
|
|
sessionVariables = {};
|
|
};
|
|
|
|
systemd.user.startServices = "sd-switch";
|
|
home.stateVersion = "23.05";
|
|
}
|