♻️ [shared] Moved Hm configs to shared base

This commit is contained in:
2025-05-22 20:10:48 +02:00
parent 2b020958ed
commit 53329b8d1c
17 changed files with 60 additions and 68 deletions

View File

@ -0,0 +1,20 @@
{
outputs,
systemConfig,
common,
...
}:
{
home = {
username = systemConfig.username;
homeDirectory = common.dir.home;
stateVersion = systemConfig.version;
};
# Adds pkgs.unstable in order to fetch packages from unstable repositories
nixpkgs.overlays = [ outputs.overlays.unstable-packages ];
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}