Files
dotfiles/home/programs/xh.nix
uttarayan21 04c0eac534
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
feat(programs): update package list and remove clang from rustup
2025-10-10 19:11:28 +05:30

11 lines
129 B
Nix

{
pkgs,
lib,
device,
...
}: {
home.packages = lib.optionals (device.is "ryu" || device.is "kuro") [
pkgs.xh
];
}