nixos/home-manager/common/default.nix

12 lines
261 B
Nix

{ ... }:
let
username = import ../../username.nix;
in
{
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = username;
home.homeDirectory = "/home/${username}";
programs.home-manager.enable = true;
}