Better modules
This commit is contained in:
parent
85a23285b8
commit
21ed795cfd
16 changed files with 534 additions and 302 deletions
67
modules/qogir_theme.nix
Normal file
67
modules/qogir_theme.nix
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
{ 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.qogir-theme;
|
||||
name = "Qogir-dark";
|
||||
};
|
||||
# gtk3.extraConfig = {
|
||||
# gtk-theme-name=Drakula
|
||||
# gtk-icon-theme-name=Qogir-dark
|
||||
# gtk-font-name=Cantarell 9
|
||||
# gtk-cursor-theme-name=capitaine-cursors
|
||||
# gtk-cursor-theme-size=0
|
||||
# gtk-toolbar-style=GTK_TOOLBAR_ICONS
|
||||
# gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
|
||||
# gtk-button-images=1
|
||||
# gtk-menu-images=1
|
||||
# gtk-enable-event-sounds=1
|
||||
# gtk-enable-input-feedback-sounds=1
|
||||
# gtk-xft-antialias=1
|
||||
# gtk-xft-hinting=1
|
||||
# gtk-xft-hintstyle=hintfull
|
||||
# gtk-xft-rgba=none
|
||||
# };
|
||||
# gtk2.extraConfig = {
|
||||
# gtk-theme-name="Arc-Dark"
|
||||
# gtk-icon-theme-name="Qogir-dark"
|
||||
# gtk-font-name="Cantarell 9"
|
||||
# gtk-cursor-theme-name="capitaine-cursors"
|
||||
# gtk-cursor-theme-size=0
|
||||
# gtk-toolbar-style=GTK_TOOLBAR_ICONS
|
||||
# gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
|
||||
# gtk-button-images=1
|
||||
# gtk-menu-images=1
|
||||
# gtk-enable-event-sounds=1
|
||||
# gtk-enable-input-feedback-sounds=1
|
||||
# gtk-xft-antialias=1
|
||||
# gtk-xft-hinting=1
|
||||
# gtk-xft-hintstyle="hintfull"
|
||||
# gtk-xft-rgba="none"
|
||||
# };
|
||||
};
|
||||
|
||||
qt = {
|
||||
enable = true;
|
||||
platformTheme = "gtk";
|
||||
};
|
||||
|
||||
xsession = {
|
||||
numlock.enable = true;
|
||||
pointerCursor = {
|
||||
package = pkgs.qogir-icon-theme;
|
||||
name = "Qogir";
|
||||
size = 24;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue