Compare commits
No commits in common. "e8b66385c978028cb57111a0a2c879cd78736f5b" and "f29934a3d1a74a355bd85abf9e6912799808930d" have entirely different histories.
e8b66385c9
...
f29934a3d1
|
@ -34,6 +34,7 @@
|
||||||
libredirect
|
libredirect
|
||||||
multi-account-containers
|
multi-account-containers
|
||||||
clearurls
|
clearurls
|
||||||
|
istilldontcareaboutcookies
|
||||||
hoppscotch
|
hoppscotch
|
||||||
];
|
];
|
||||||
bookmarks = {};
|
bookmarks = {};
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
programs.kitty = {
|
programs.kitty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
shellIntegration.enableZshIntegration = true;
|
|
||||||
|
|
||||||
themeFile = "Catppuccin-Mocha";
|
themeFile = "Catppuccin-Mocha";
|
||||||
|
|
||||||
font = {
|
font = {
|
||||||
|
@ -43,6 +41,10 @@
|
||||||
"alt+2" = "goto_tab 2";
|
"alt+2" = "goto_tab 2";
|
||||||
"alt+3" = "goto_tab 3";
|
"alt+3" = "goto_tab 3";
|
||||||
"alt+4" = "goto_tab 4";
|
"alt+4" = "goto_tab 4";
|
||||||
|
|
||||||
|
## Unbind
|
||||||
|
"ctrl+shift+left" = "no_op";
|
||||||
|
"ctrl+shift+right" = "no_op";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
xdg.mimeApps.enable = true;
|
xdg.mimeApps.enable = true;
|
||||||
xdg.mimeApps.defaultApplications =
|
xdg.mimeApps.defaultApplications =
|
||||||
{
|
{
|
||||||
"inode/directory" = ["nemo.desktop"];
|
"inode/directory" = ["nemo.desktop"];
|
||||||
"application/x-gnome-saved-search" = ["nemo.desktop"];
|
"application/x-gnome-saved-search" = ["nemo.desktop"];
|
||||||
"application/pdf" = ["okularApplication_pdf.desktop" "org.gnome.Evince.desktop"];
|
"application/pdf" = ["okularApplication_pdf.desktop" "org.gnome.Evince.desktop"];
|
||||||
"text/plain" = ["org.gnome.TextEditor.desktop"];
|
"text/plain" = ["org.gnome.TextEditor.desktop"];
|
||||||
}
|
}
|
||||||
// builtins.listToAttrs (map (key: {
|
// builtins.listToAttrs (map (key: {
|
||||||
name = "image/${key}";
|
name = "image/${key}";
|
||||||
value = ["vimiv.desktop"];
|
value = ["vimiv.desktop"];
|
||||||
|
@ -23,7 +23,6 @@
|
||||||
distrobox
|
distrobox
|
||||||
boxbuddy
|
boxbuddy
|
||||||
evince # gnome pdf viewer
|
evince # gnome pdf viewer
|
||||||
eza # cool ls
|
|
||||||
element-desktop # Matrix client
|
element-desktop # Matrix client
|
||||||
fd # find replacement
|
fd # find replacement
|
||||||
file # Show file information
|
file # Show file information
|
||||||
|
@ -57,7 +56,7 @@
|
||||||
zenity
|
zenity
|
||||||
wdisplays
|
wdisplays
|
||||||
wireguard-tools
|
wireguard-tools
|
||||||
wtype
|
wtype
|
||||||
|
|
||||||
# Wine stuff
|
# Wine stuff
|
||||||
winetricks
|
winetricks
|
||||||
|
@ -93,10 +92,5 @@
|
||||||
xdg-utils
|
xdg-utils
|
||||||
xxd
|
xxd
|
||||||
alejandra
|
alejandra
|
||||||
|
|
||||||
# VPN
|
|
||||||
wireguard-tools
|
|
||||||
openconnect
|
|
||||||
networkmanager-openconnect
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,6 @@
|
||||||
findw = "grep -rl";
|
findw = "grep -rl";
|
||||||
pdf = "tdf";
|
pdf = "tdf";
|
||||||
open = "xdg-open";
|
open = "xdg-open";
|
||||||
find = "fd";
|
|
||||||
|
|
||||||
l = "eza --icons -a --group-directories-first -1"; #EZA_ICON_SPACING=2
|
l = "eza --icons -a --group-directories-first -1"; #EZA_ICON_SPACING=2
|
||||||
ll = "eza --icons -a --group-directories-first -1 --no-user --long";
|
ll = "eza --icons -a --group-directories-first -1 --no-user --long";
|
||||||
|
@ -72,11 +71,6 @@
|
||||||
# python
|
# python
|
||||||
piv = "python -m venv .venv";
|
piv = "python -m venv .venv";
|
||||||
psv = "source .venv/bin/activate";
|
psv = "source .venv/bin/activate";
|
||||||
|
|
||||||
# ssh
|
|
||||||
s = "kitten ssh";
|
|
||||||
ssh = "kitten ssh";
|
|
||||||
ossh = "ssh";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue