Initial commit
This commit is contained in:
commit
cfcc57a8bd
353 changed files with 18756 additions and 0 deletions
17
module/aspect/base/home-manager.nix
Normal file
17
module/aspect/base/home-manager.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
den.aspects = {
|
||||
base = {
|
||||
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
|
||||
*/
|
||||
Loading…
Add table
Add a link
Reference in a new issue