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