Compare commits

..

No commits in common. "766d158402251295fb7dc99e49a89db16ba35285" and "48652100719ee934613e9356cc19473d18de8eb6" have entirely different histories.

3 changed files with 9 additions and 15 deletions

View file

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

View file

@ -15,10 +15,9 @@ 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";
@ -86,6 +85,7 @@ 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

View file

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