15 lines
234 B
Nix
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
|
|
];
|
|
})
|
|
];
|
|
}
|