cleaned up

This commit is contained in:
biscuit
2025-06-03 17:19:06 -05:00
parent b8dfddd2e8
commit 35a794a648
3 changed files with 1 additions and 824 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";
}