mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{pkgs, ...}: {
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
flat-remix-gtk
|
|
flat-remix-icon-theme
|
|
quintom-cursor-theme
|
|
];
|
|
etc = {
|
|
"xdg/gtk-4.0/settings.ini".text = ''
|
|
[Settings]
|
|
gtk-cursor-theme-name=Quintom_Ink
|
|
gtk-cursor-theme-size=16
|
|
gtk-font-name=Overpass 10
|
|
gtk-icon-theme-name=Flat-Remix-Blue-Dark
|
|
gtk-theme-name=Flat-Remix-GTK-Blue-Darkest
|
|
'';
|
|
"xdg/gtk-3.0/settings.ini".text = ''
|
|
[Settings]
|
|
gtk-cursor-theme-name=Quintom_Ink
|
|
gtk-cursor-theme-size=16
|
|
gtk-font-name=Overpass 10
|
|
gtk-icon-theme-name=Flat-Remix-Blue-Dark
|
|
gtk-theme-name=Flat-Remix-GTK-Blue-Darkest
|
|
'';
|
|
"xdg/gtk-2.0/gtkrc".text = ''
|
|
gtk-cursor-theme-name = "Quintom_Ink"
|
|
gtk-cursor-theme-size = 16
|
|
gtk-font-name = "Overpass 10"
|
|
gtk-icon-theme-name = "Flat-Remix-Blue-Dark"
|
|
gtk-theme-name = "Flat-Remix-GTK-Blue-Darkest"
|
|
'';
|
|
"xdg/Xresources".text = ''
|
|
Xcursor.size: 16
|
|
Xcursor.theme: Quintom_Ink
|
|
'';
|
|
};
|
|
};
|
|
qt = {
|
|
enable = true;
|
|
style = "gtk2";
|
|
platformTheme = "gtk2";
|
|
};
|
|
services.xserver.displayManager.sessionCommands = ''
|
|
xrdb -load /etc/xdg/Xresources
|
|
'';
|
|
}
|