nixos/home-manager/common/default.nix

12 lines
271 B
Nix
Raw Normal View History

2022-01-22 07:15:47 +01:00
{ self, ... }:
let
2022-01-22 07:15:47 +01:00
username = import "${self}/username.nix";
in
2021-12-22 18:14:17 +01:00
{
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = username;
home.homeDirectory = "/home/${username}";
2022-01-12 14:45:13 +01:00
programs.home-manager.enable = true;
2021-12-22 18:14:17 +01:00
}