nix-flake/modules/home/default.nix
2026-02-08 11:03:31 +07:00

17 lines
299 B
Nix

{ username, ... }: {
imports = [
./misc/kde-connect.nix
./core/apps.nix
./core/zed.nix
./core/xdg.nix
./core/cli.nix
./core/zsh.nix
./desktop.nix
];
home = {
stateVersion = "24.11";
username = "${username}";
homeDirectory = "/home/${username}";
};
}