This commit is contained in:
kirbara 2025-12-01 15:22:04 +07:00
parent a450a34f62
commit 84f162046c
Signed by: exp
GPG key ID: D7E63AD0019E75D9
5 changed files with 8 additions and 5 deletions

View file

@ -0,0 +1,22 @@
{
flake-file.inputs = {
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
};
den.aspects = {
home-manager = {
homeManager =
{ config, ... }:
{
home.homeDirectory = "/home/${config.home.username}";
programs.home-manager.enable = true;
systemd.user.startServices = "sd-switch";
};
};
};
}
/*
https://ohai.social/@rycee/112502545466617762
https://github.com/nix-community/home-manager/issues/5452
*/