nix-config/modules/graphical/default.nix

22 lines
348 B
Nix
Raw Normal View History

2023-09-22 20:57:08 +02:00
{
inputs,
config,
pkgs,
...
}: {
imports = [
inputs.stylix.nixosModules.stylix
./fonts.nix
];
stylix = {
autoEnable = false;
polarity = "dark";
image = config.lib.stylix.pixel "base00";
2023-09-23 01:49:29 +02:00
base16Scheme = "${pkgs.base16-schemes}/share/themes/helios.yaml";
override = {
base00 = "#000000";
};
2023-09-22 20:57:08 +02:00
};
}