1
0
Files
nix-shared/home/default/basic.nix

15 lines
426 B
Nix
Raw Normal View History

2025-06-23 17:44:56 -07:00
{ config, lib, ... }:
{
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
# Home Manager needs a bit of information about you and the paths it should manage.
home.username = lib.mkDefault "tb";
home.homeDirectory = lib.mkDefault "/home/${config.home.username}";
# Set default terminal environment variable
home.sessionVariables = {
TERMINAL = lib.mkDefault "urxvt";
};
2025-06-23 17:44:56 -07:00
}