dots/nixcfgs/users/js0ny/default.nix
2025-11-20 21:32:35 +00:00

34 lines
695 B
Nix

# ~/.config/nixcfgs/users/js0ny/default.nix
{
pkgs,
config,
...
}: let
username = "js0ny";
in {
imports = [
../../modules/home/options.nix
../../modules/home/do-not-track.nix
./config.nix
];
home.username = username;
home.homeDirectory =
if pkgs.stdenv.isDarwin
then "/Users/${username}"
else "/home/${username}";
programs.home-manager.enable = true;
xdg.configFile = {
"nixpkgs/config.nix" = {
text = ''{allowUnfree = true;} '';
enable = true;
};
"nix/nix.conf" = {
text = ''use-xdg-base-directories = true '';
enable = true;
};
};
home.sessionVariables.TERMINAL = config.currentUser.defaultTerminal;
}