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

View File

@@ -75,7 +75,7 @@
};
terminal = {
shell = {
program = "/etc/profiles/per-user/fs0c131y/bin/fish";
program = "${pkgs.fish}/bin/fish";
};
};
};

View File

@@ -31,6 +31,7 @@
./yazi.nix
./yt-dlp.nix
./zoxide.nix
./sxiv.nix
# ./goread.nix
# ./helix.nix

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
];
}