Compare commits

...

3 commits

Author SHA1 Message Date
vorboyvo 766d158402 Updated flake.lock; this version has known graphics errors. 2025-04-05 13:42:42 -04:00
vorboyvo b1189392d0 Fixed imv config. 2025-04-05 13:42:31 -04:00
vorboyvo 33f128d762 Moved imv into its own snippet.
Switched firefox to qutebrowser.
2025-04-05 13:40:56 -04:00
3 changed files with 15 additions and 9 deletions

View file

@ -40,11 +40,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1740679976, "lastModified": 1743717835,
"narHash": "sha256-6U/zvgtcGJqpOTKsIgf+mRO7/djwV07ImU/t0nZBix8=", "narHash": "sha256-LJm6FoIcUoBw3w25ty12/sBfut4zZuNGdN0phYj/ekU=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "343646e092696d94b6f22b6875ae685756fd4cf0", "rev": "66a6ec65f84255b3defb67ff45af86c844dd451b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -90,11 +90,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1740560979, "lastModified": 1743583204,
"narHash": "sha256-Vr3Qi346M+8CjedtbyUevIGDZW8LcA1fTG0ugPY/Hic=", "narHash": "sha256-F7n4+KOIfWrwoQjXrL2wD9RhFYLs2/GGe/MQY1sSdlE=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "5135c59491985879812717f4c9fea69604e7f26f", "rev": "2c8d3f48d33929642c1c12cd243df4cc7d2ce434",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

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

6
snippets/imv.nix Normal file
View file

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