36 lines
856 B
Nix
36 lines
856 B
Nix
{ ... }:
|
|
{
|
|
config.dendritic.features = {
|
|
theme-home-stylix = {
|
|
includeInEmbeddedHomeManager = false;
|
|
homeModules = [
|
|
({ inputs, pkgs, ... }: {
|
|
imports = [
|
|
inputs.stylix.homeModules.stylix
|
|
];
|
|
|
|
stylix.enable = true;
|
|
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-sulphurpool-light.yaml";
|
|
})
|
|
];
|
|
};
|
|
|
|
theme-system-stylix.nixosModules = [
|
|
({ inputs, pkgs, ... }: {
|
|
imports = [
|
|
inputs.stylix.nixosModules.stylix
|
|
];
|
|
|
|
stylix = {
|
|
enable = true;
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-sulphurpool-light.yaml";
|
|
fonts = {
|
|
monospace = {
|
|
name = "JetBrainsMono Nerd Font";
|
|
};
|
|
};
|
|
};
|
|
})
|
|
];
|
|
};
|
|
}
|