ops/nixos: import home-manager into lib/common
This commit is contained in:
parent
4ea585daa2
commit
d3bee9d2de
2 changed files with 2 additions and 2 deletions
|
@ -7,8 +7,6 @@ let
|
|||
inherit (lib) mkBefore;
|
||||
in
|
||||
{
|
||||
imports = [ ../../../third_party/home-manager/nixos ];
|
||||
|
||||
config = {
|
||||
my.home-manager.imports = lib.mkAfter [ ./home-manager/client.nix ];
|
||||
nix.gc.automatic = false;
|
||||
|
|
|
@ -7,6 +7,8 @@ let
|
|||
inherit (lib) mkDefault;
|
||||
in
|
||||
{
|
||||
imports = [ ../../../third_party/home-manager/nixos ];
|
||||
|
||||
options.my.home-manager.imports = lib.mkOption {
|
||||
type = lib.types.listOf lib.types.path;
|
||||
default = [ ./home-manager/common.nix ];
|
||||
|
|
Loading…
Reference in a new issue