chore
This commit is contained in:
parent
a450a34f62
commit
84f162046c
5 changed files with 8 additions and 5 deletions
22
module/aspect/home-manager/home-manager.nix
Normal file
22
module/aspect/home-manager/home-manager.nix
Normal 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
|
||||
*/
|
||||
Loading…
Add table
Add a link
Reference in a new issue