rio: add testbed (#1600)

Link: https://github.com/nix-community/stylix/pull/1600

Reviewed-by: awwpotato <awwpotato@voidq.com>
This commit is contained in:
Flameopathic 2025-07-05 21:34:24 -04:00 committed by GitHub
parent 606944b168
commit aca5e11a1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,18 @@
{ lib, pkgs, ... }:
let
package = pkgs.rio;
in
{
stylix.testbed.ui.application = {
name = "rio";
inherit package;
};
home-manager.sharedModules = lib.singleton {
programs.rio = {
enable = true;
inherit package;
};
};
}