1
0
Fork 0
puter/profiles/emulation/rmg.nix
2025-05-18 01:08:10 +02:00

16 lines
185 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.profiles.emulation;
in
{
config = lib.mkIf cfg.enable {
environment.systemPackages = [
pkgs.rmg-wayland
];
};
}