Compare commits

...

2 Commits

Author SHA1 Message Date
b547296fb3 feat(cargo): add pkgs metadata alias
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m27s
2026-02-19 21:06:38 +05:30
9d1ca43913 fix(apps): make playerctl conditional to ryu device only
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m27s
2026-02-19 14:02:39 +05:30
2 changed files with 6 additions and 4 deletions

View File

@@ -12,7 +12,8 @@
autoStart = true; autoStart = true;
}; };
}; };
home.packages = with pkgs; [ home.packages = with pkgs;
lib.optionals (device.is "ryu") [
# pulseaudio # pulseaudio
playerctl playerctl
]; ];

View File

@@ -13,6 +13,7 @@ in
[alias] [alias]
lldb = ["with", "rust-lldb", "--"] lldb = ["with", "rust-lldb", "--"]
t = ["nextest", "run"] t = ["nextest", "run"]
pkgs = ["metadata", "--no-deps", "--format-version", "1"]
[net] [net]
git-fetch-with-cli = true git-fetch-with-cli = true