forked from pub-solar/os
3d324e7533
fix #167 This worked for me to bootstrap another machine.
13 lines
230 B
Nix
13 lines
230 B
Nix
{ lib, self, ... }:
|
|
|
|
let hmConfigs =
|
|
lib.mapAttrs
|
|
(_: config: config.config.home-manager.users)
|
|
self.nixosConfigurations;
|
|
in
|
|
lib.mapAttrs
|
|
(_: x: lib.mapAttrs
|
|
(_: cfg: cfg.home.activationPackage)
|
|
x)
|
|
hmConfigs
|