Files
cnix/users/cnstlab/default.nix
2025-07-02 19:25:33 +02:00

45 lines
775 B
Nix

{
pkgs,
lib,
config,
# osConfig,
...
}:
# let
# isCnixpad = osConfig.networking.hostName == "cnixpad";
# in
{
imports = [
./modules
./git.nix
];
# ++ lib.optionals isCnixpad [./cpmodules.nix];
home = {
username = "cnstlab";
homeDirectory = "/home/cnstlab";
stateVersion = "23.11";
extraOutputsToInstall = ["doc" "devdoc"];
packages = with pkgs; [
# misc.system
bun
];
sessionVariables = {
BROWSER = "zen";
EDITOR = "hx";
TERM = "xterm-256color";
};
};
manual = {
html.enable = false;
json.enable = false;
manpages.enable = false;
};
programs.home-manager.enable = true;
# systemd.user.targets.tray.Unit.Requires = lib.mkForce ["graphical-session.target"];
}