nixos_config/nixos/modules/theme/home-manager.nix

16 lines
234 B
Nix
Raw Normal View History

{ pkgs, ... }:
let
theme = import ./colors.nix { inherit pkgs; };
in
{
home-manager.sharedModules = [
({ ... }: {
_module.args.theme = theme;
imports = [
../../../home/modules/theme
];
})
];
}