35 lines
658 B
Nix
35 lines
658 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
imports = [
|
|
./bookmarks
|
|
./css
|
|
];
|
|
|
|
gtk = {
|
|
enable = true;
|
|
font = {
|
|
name = "${config.look.fonts.main}";
|
|
size = 11;
|
|
};
|
|
theme = {
|
|
name = "Colloid-Dark";
|
|
package = pkgs.colloid-gtk-theme.override {
|
|
themeVariants = [ "default" ];
|
|
colorVariants = [ "dark" ];
|
|
sizeVariants = [ "standard" ];
|
|
tweaks = [
|
|
"black"
|
|
"rimless"
|
|
"normal"
|
|
];
|
|
};
|
|
};
|
|
iconTheme = {
|
|
name = "Papirus-Dark";
|
|
package = pkgs.papirus-icon-theme.override {
|
|
color = "${config.look.colors.folder}";
|
|
};
|
|
};
|
|
};
|
|
}
|