mirror of
https://github.com/js0ny/dotfiles.git
synced 2026-03-23 11:12:42 +00:00
23 lines
468 B
Nix
23 lines
468 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;
|
|
|
|
home.sessionVariables.TERMINAL = config.currentUser.defaultTerminal;
|
|
}
|