mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 17:03:56 -05:00
formatting
This commit is contained in:
parent
43e32b076b
commit
fb0c186896
2 changed files with 37 additions and 39 deletions
|
|
@ -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";
|
||||||
|
|
|
||||||
|
|
@ -1,48 +1,46 @@
|
||||||
{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;
|
||||||
style = "gtk2";
|
style = "gtk2";
|
||||||
platformTheme = "gtk2";
|
platformTheme = "gtk2";
|
||||||
};
|
};
|
||||||
services.xserver.displayManager.sessionCommands = ''
|
services.xserver.displayManager.sessionCommands = ''
|
||||||
xrdb -load /etc/xdg/Xresources
|
xrdb -load /etc/xdg/Xresources
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue