Move initial Home Manager configuration

This commit is contained in:
Oliver Davies 2025-07-24 20:22:20 +01:00
parent bf8e3628d0
commit 8947c4abd2
3 changed files with 60 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ config, ... }:
{
flake.modules.homeManager.base = args: {
home = {
homeDirectory = "/home/${config.flake.meta.owner.username}";
username = config.flake.meta.owner.username;
};
programs.home-manager.enable = true;
systemd.user.startServices = "sd-switch";
};
}