feat(home): conditionally install vial for device 'ryu'
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m28s

This commit is contained in:
uttarayan21
2025-10-14 23:13:04 +05:30
parent f23ceb0778
commit 0066ce6840

View File

@@ -1,3 +1,7 @@
{pkgs, ...}: { {
home.packages = with pkgs; [vial]; pkgs,
device,
...
}: {
home.packages = with pkgs; lib.optionals (device.is "ryu") [vial];
} }