Update 01/07/21

This commit is contained in:
Filippo Berto 2021-07-10 17:35:10 +02:00
parent 632185d7f8
commit 2d6084b28a
10 changed files with 182 additions and 120 deletions

33
modules/gtk_theme.nix Normal file
View file

@ -0,0 +1,33 @@
{ pkgs, ... }:
{
gtk = {
enable = true;
font = {
package = pkgs.cantarell-fonts;
name = "Cantarell";
size = 9;
};
iconTheme = {
package = pkgs.qogir-icon-theme;
name = "Qogir-dark";
};
theme = {
package = pkgs.nordic;
name = "Nordic-bluish-accent";
};
};
qt = {
enable = true;
platformTheme = "gtk";
};
xsession = {
numlock.enable = true;
pointerCursor = {
package = pkgs.qogir-icon-theme;
name = "Qogir";
size = 24;
};
};
}