10 lines
308 B
Nix
10 lines
308 B
Nix
{ 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}";
|
|
}
|