feat: Added sxiv for ryu

This commit is contained in:
uttarayan21
2025-08-05 02:18:02 +05:30
parent a1d40fdd7a
commit 3419c7d440
4 changed files with 15 additions and 2 deletions

11
home/programs/sxiv.nix Normal file
View File

@@ -0,0 +1,11 @@
{
pkgs,
lib,
device,
...
}: {
home.packages = with pkgs;
lib.mkIf (device.is "ryu") [
sxiv
];
}