formatting

This commit is contained in:
ISnortPennies 2023-02-04 22:42:47 -05:00
parent 43e32b076b
commit fb0c186896
2 changed files with 37 additions and 39 deletions

View file

@ -43,7 +43,7 @@
#exa is 1 too many letters #exa is 1 too many letters
ls = "exa"; ls = "exa";
l = "exa -lbF --git"; l = "exa -lbF --git";
ll = "$exa -lbGF --git"; ll = "exa -lbGF --git";
llm = "exa -lbGd --git --sort=modified"; llm = "exa -lbGd --git --sort=modified";
la = "exa -lbhHigUmuSa --time-style=long-iso --git --color-scale"; la = "exa -lbhHigUmuSa --time-style=long-iso --git --color-scale";
lx = "exa -lbhHigUmuSa@ --time-style=long-iso --git --color-scale"; lx = "exa -lbhHigUmuSa@ --time-style=long-iso --git --color-scale";

View file

@ -1,41 +1,39 @@
{pkgs,...}: {pkgs, ...}: {
{
environment = { environment = {
systemPackages = with pkgs; systemPackages = with pkgs; [
[ flat-remix-gtk
flat-remix-gtk flat-remix-icon-theme
flat-remix-icon-theme quintom-cursor-theme
quintom-cursor-theme ];
]; etc = {
etc = { "xdg/gtk-4.0/settings.ini".text = ''
"xdg/gtk-4.0/settings.ini".text = '' [Settings]
[Settings] gtk-cursor-theme-name=Quintom_Ink
gtk-cursor-theme-name=Quintom_Ink gtk-cursor-theme-size=16
gtk-cursor-theme-size=16 gtk-font-name=Overpass 10
gtk-font-name=Overpass 10 gtk-icon-theme-name=Flat-Remix-Blue-Dark
gtk-icon-theme-name=Flat-Remix-Blue-Dark gtk-theme-name=Flat-Remix-GTK-Blue-Darkest
gtk-theme-name=Flat-Remix-GTK-Blue-Darkest '';
''; "xdg/gtk-3.0/settings.ini".text = ''
"xdg/gtk-3.0/settings.ini".text = '' [Settings]
[Settings] gtk-cursor-theme-name=Quintom_Ink
gtk-cursor-theme-name=Quintom_Ink gtk-cursor-theme-size=16
gtk-cursor-theme-size=16 gtk-font-name=Overpass 10
gtk-font-name=Overpass 10 gtk-icon-theme-name=Flat-Remix-Blue-Dark
gtk-icon-theme-name=Flat-Remix-Blue-Dark gtk-theme-name=Flat-Remix-GTK-Blue-Darkest
gtk-theme-name=Flat-Remix-GTK-Blue-Darkest '';
''; "xdg/gtk-2.0/gtkrc".text = ''
"xdg/gtk-2.0/gtkrc".text = '' gtk-cursor-theme-name = "Quintom_Ink"
gtk-cursor-theme-name = "Quintom_Ink" gtk-cursor-theme-size = 16
gtk-cursor-theme-size = 16 gtk-font-name = "Overpass 10"
gtk-font-name = "Overpass 10" gtk-icon-theme-name = "Flat-Remix-Blue-Dark"
gtk-icon-theme-name = "Flat-Remix-Blue-Dark" gtk-theme-name = "Flat-Remix-GTK-Blue-Darkest"
gtk-theme-name = "Flat-Remix-GTK-Blue-Darkest" '';
''; "xdg/Xresources".text = ''
"xdg/Xresources".text = '' Xcursor.size: 16
Xcursor.size: 16 Xcursor.theme: Quintom_Ink
Xcursor.theme: Quintom_Ink '';
''; };
};
}; };
qt = { qt = {
enable = true; enable = true;
@ -43,6 +41,6 @@ Xcursor.theme: Quintom_Ink
platformTheme = "gtk2"; platformTheme = "gtk2";
}; };
services.xserver.displayManager.sessionCommands = '' services.xserver.displayManager.sessionCommands = ''
xrdb -load /etc/xdg/Xresources xrdb -load /etc/xdg/Xresources
''; '';
} }