Added: Dolphin
This commit is contained in:
9
home/themes/dark/default.nix
Normal file
9
home/themes/dark/default.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
|
||||
imports = [
|
||||
./qt.nix
|
||||
./gtk.nix
|
||||
];
|
||||
|
||||
}
|
22
home/themes/dark/gtk.nix
Normal file
22
home/themes/dark/gtk.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
|
||||
gtk = {
|
||||
enable = true;
|
||||
|
||||
theme = {
|
||||
package = pkgs.flat-remix-gtk;
|
||||
name = "Flat-Remix-GTK-Grey-Darkest";
|
||||
};
|
||||
|
||||
iconTheme = {
|
||||
package = pkgs.gnome.adwaita-icon-theme;
|
||||
name = "Adwaita";
|
||||
};
|
||||
|
||||
font = {
|
||||
name = "Sans";
|
||||
size = 12;
|
||||
};
|
||||
};
|
||||
}
|
19
home/themes/dark/qt.nix
Normal file
19
home/themes/dark/qt.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
|
||||
home.packages = with pkgs.libsForQt5; [
|
||||
qt5ct
|
||||
qtstyleplugin-kvantum
|
||||
];
|
||||
|
||||
qt = {
|
||||
enable = true;
|
||||
platformTheme = "qtct";
|
||||
style.name = "kvantum";
|
||||
};
|
||||
|
||||
xdg.configFile = {
|
||||
"Kvantum/ArcDark".source = "${pkgs.arc-kde-theme}/share/Kvantum/ArcDark";
|
||||
"Kvantum/kvantum.kvconfig".text = "[General]\ntheme=ArcDark";
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user