config: update home-manager configs for non-NixOS systems

This commit is contained in:
Gabriel Arazas 2023-07-29 10:47:34 +08:00
parent 3a933db84d
commit b06a0dcce6
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -345,6 +345,11 @@
# Setting the homely options. # Setting the homely options.
home.username = metadata.username or name; home.username = metadata.username or name;
home.homeDirectory = metadata.home-directory or "/home/${config.home.username}"; home.homeDirectory = metadata.home-directory or "/home/${config.home.username}";
# home-manager configurations are expected to be deployed on
# non-NixOS systems so it is safe to set this.
programs.home-manager.enable = true;
targets.genericLinux.enable = true;
}) })
userSharedConfig userSharedConfig
path path