KDE, QT, GTK, remove Brave

This commit is contained in:
Kat Inskip 2023-11-05 19:53:04 -08:00
parent 0822d1162d
commit 6127a9df0b
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
5 changed files with 59 additions and 2 deletions

View file

@ -5,8 +5,6 @@
# Task managers # Task managers
btop btop
htop htop
# Browser
brave
# Mail # Mail
thunderbird thunderbird
# Music # Music

33
kat/kde/gtk.nix Normal file
View file

@ -0,0 +1,33 @@
{pkgs, ...}: {
gtk = {
enable = true;
iconTheme = {
name = "Papirus";
package = pkgs.papirus-icon-theme;
};
theme = {
name = "Arc";
package = pkgs.arc-theme;
};
cursorTheme = {
name = "Numix-Cursor";
package = pkgs.numix-cursor-theme;
};
gtk3.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme=1
'';
};
gtk4.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme=1
'';
};
};
home.sessionVariables.GTK_THEME = "Arc";
}

15
kat/kde/kde.nix Normal file
View file

@ -0,0 +1,15 @@
_: {
programs.plasma = {
configFile = {
"kded5rc"."PlasmaBrowserIntegration"."shownCount" = 1;
"kdeglobals"."WM"."activeBackground" = "231,232,235";
"kdeglobals"."WM"."activeBlend" = "231,232,235";
"kdeglobals"."WM"."activeForeground" = "92,97,108";
"kdeglobals"."WM"."inactiveBackground" = "231,232,235";
"kdeglobals"."WM"."inactiveBlend" = "231,232,235";
"kdeglobals"."WM"."inactiveForeground" = "163,165,172";
"kxkbrc"."Layout"."Options" = "terminate:ctrl_alt_bksp,ctrl:nocaps";
"kxkbrc"."Layout"."ResetOldOptions" = true;
};
};
}

10
kat/kde/qt.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }: {
qt = {
enable = true;
platformTheme = "kde";
style = {
name = "Arc";
package = pkgs.arc-kde-theme;
};
};
}

View file

@ -17,6 +17,7 @@ _: let
++ (with tree; [ ++ (with tree; [
kat.gui kat.gui
kat.vscode kat.vscode
kat.kde
]); ]);
fileSystems = { fileSystems = {