cleaned up

This commit is contained in:
biscuit
2025-05-21 11:20:30 -05:00
parent fda9681b84
commit 477b592b06
7 changed files with 5 additions and 5 deletions
+27
View File
@@ -0,0 +1,27 @@
{
inputs,
outputs,
lib,
config,
pkgs,
username,
...
}: {
imports = [
../../modules/desktop/editor.nix
../../modules/desktop/display-manager.nix
../../modules/desktop/misc.nix
];
programs.home-manager.enable = true;
home = {
username = "${username}";
homeDirectory = "/home/${username}";
packages = [];
sessionVariables = {};
};
systemd.user.startServices = "sd-switch";
home.stateVersion = "23.05";
}