nixos/home-manager/common/default.nix

11 lines
222 B
Nix
Raw Normal View History

2021-12-22 18:14:17 +01:00
{ ... }:
let
username = import ../../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}";
2021-12-22 18:14:17 +01:00
}