nix-conf/system/dev/dn-server/home/default.nix
2026-01-10 12:46:40 +08:00

20 lines
408 B
Nix
Executable file

{
config,
...
}:
let
inherit (config.systemConf) username;
in
{
home-manager.users."${username}" = {
imports = [
../../../../home/user/config.nix
../../../../home/user/direnv.nix
../../../../home/user/environment.nix
../../../../home/user/nvf
../../../../home/user/shell.nix
../../../../home/user/yazi.nix
../../../../home/user/ghostty.nix
];
};
}