Compare commits
3 commits
4865210071
...
766d158402
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
766d158402 | ||
|
|
b1189392d0 | ||
|
|
33f128d762 |
12
flake.lock
12
flake.lock
|
|
@ -40,11 +40,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1740679976,
|
||||
"narHash": "sha256-6U/zvgtcGJqpOTKsIgf+mRO7/djwV07ImU/t0nZBix8=",
|
||||
"lastModified": 1743717835,
|
||||
"narHash": "sha256-LJm6FoIcUoBw3w25ty12/sBfut4zZuNGdN0phYj/ekU=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "343646e092696d94b6f22b6875ae685756fd4cf0",
|
||||
"rev": "66a6ec65f84255b3defb67ff45af86c844dd451b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
@ -90,11 +90,11 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1740560979,
|
||||
"narHash": "sha256-Vr3Qi346M+8CjedtbyUevIGDZW8LcA1fTG0ugPY/Hic=",
|
||||
"lastModified": 1743583204,
|
||||
"narHash": "sha256-F7n4+KOIfWrwoQjXrL2wD9RhFYLs2/GGe/MQY1sSdlE=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "5135c59491985879812717f4c9fea69604e7f26f",
|
||||
"rev": "2c8d3f48d33929642c1c12cd243df4cc7d2ce434",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
|||
|
|
@ -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
6
snippets/imv.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, ... }: {
|
||||
programs.imv = {
|
||||
enable = true;
|
||||
settings.binds.y = "exec wl-copy < \"$imv_current_file\"";
|
||||
};
|
||||
}
|
||||
Loading…
Reference in a new issue