Moved imv into its own snippet.

Switched firefox to qutebrowser.
This commit is contained in:
vorboyvo 2025-04-05 13:40:56 -04:00
parent 4865210071
commit 33f128d762
2 changed files with 9 additions and 3 deletions

View file

@ -15,9 +15,10 @@ rec {
../../snippets/sway.nix
../../snippets/waybar.nix
# ../../snippets/i3blocks.nix
# ../../snippets/firefox.nix
../../snippets/firefox.nix
../../snippets/thunderbird.nix
../../snippets/qutebrowser.nix
# ../../snippets/qutebrowser.nix
../../snippets/imv.nix
];
home.username = "alice";
@ -85,7 +86,6 @@ rec {
++ # Personalized selection of command-line (CLI/TUI) apps
[ defaultPrograms.terminal ] ++ # Terminal emulator
[
imv
vlc
pavucontrol
font-manager

6
snippets/imv.nix Normal file
View file

@ -0,0 +1,6 @@
{ pkgs, ... }: {
programs.imv = {
enable = true;
binds.y = "exec wl-copy < \"$imv_current_file\"";
};
}