nixos_config/nixos/modules/theme/home-manager.nix
2026-05-22 19:48:24 +02:00

15 lines
234 B
Nix

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