home: add gtk
This commit is contained in:
parent
bf9de874ce
commit
5e193b3a42
|
@ -11,6 +11,7 @@
|
||||||
./gammastep.nix
|
./gammastep.nix
|
||||||
./git
|
./git
|
||||||
./gpg.nix
|
./gpg.nix
|
||||||
|
./gtk.nix
|
||||||
./htop.nix
|
./htop.nix
|
||||||
./jq.nix
|
./jq.nix
|
||||||
./nm-applet.nix
|
./nm-applet.nix
|
||||||
|
|
34
home/gtk.nix
Normal file
34
home/gtk.nix
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.my.home.gtk;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.my.home.gtk = with lib; {
|
||||||
|
enable = mkEnableOption "GTK configuration";
|
||||||
|
};
|
||||||
|
|
||||||
|
config.gtk = lib.mkIf cfg.enable {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
font = {
|
||||||
|
package = pkgs.dejavu_fonts;
|
||||||
|
name = "DejaVu Sans";
|
||||||
|
size = 8;
|
||||||
|
};
|
||||||
|
|
||||||
|
gtk2 = {
|
||||||
|
# That sweet, sweet clean home that I am always aiming for...
|
||||||
|
configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
|
||||||
|
};
|
||||||
|
|
||||||
|
iconTheme = {
|
||||||
|
package = pkgs.gnome3.gnome_themes_standard;
|
||||||
|
name = "Adwaita";
|
||||||
|
};
|
||||||
|
|
||||||
|
theme = {
|
||||||
|
package = pkgs.gnome3.gnome_themes_standard;
|
||||||
|
name = "Adwaita";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue