blender: added CUDA support documentation: enabled development (kernel) documentation
30 lines
610 B
Nix
30 lines
610 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: let
|
|
globalOpacity = 0.75;
|
|
in {
|
|
stylix = {
|
|
enable = true;
|
|
autoEnable = true;
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/nord.yaml";
|
|
image = config.myWallPaperPath;
|
|
fonts = {
|
|
sansSerif = {
|
|
name = "Aileron";
|
|
package = pkgs.aileron;
|
|
};
|
|
monospace = {
|
|
name = config.desktopFontFullName;
|
|
package = pkgs.nerd-fonts.jetbrains-mono;
|
|
};
|
|
};
|
|
opacity = {
|
|
applications = globalOpacity;
|
|
desktop = globalOpacity;
|
|
popups = globalOpacity;
|
|
terminal = globalOpacity;
|
|
};
|
|
};
|
|
}
|