nix-config/modules/graphical/default.nix

19 lines
304 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";
base16Scheme = "${pkgs.base16-schemes}/share/themes/da-one-black.yaml";
};
}