mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
KDE, QT, GTK, remove Brave
This commit is contained in:
parent
0822d1162d
commit
6127a9df0b
5 changed files with 59 additions and 2 deletions
|
|
@ -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
33
kat/kde/gtk.nix
Normal 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
15
kat/kde/kde.nix
Normal 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
10
kat/kde/qt.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
qt = {
|
||||||
|
enable = true;
|
||||||
|
platformTheme = "kde";
|
||||||
|
style = {
|
||||||
|
name = "Arc";
|
||||||
|
package = pkgs.arc-kde-theme;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -17,6 +17,7 @@ _: let
|
||||||
++ (with tree; [
|
++ (with tree; [
|
||||||
kat.gui
|
kat.gui
|
||||||
kat.vscode
|
kat.vscode
|
||||||
|
kat.kde
|
||||||
]);
|
]);
|
||||||
|
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue