ooknet/modules/nixos/workstation/gaming/switch.nix

14 lines
220 B
Nix

{
lib,
config,
...
}: let
inherit (lib) mkIf elem;
inherit (config.ooknet.workstation) profiles;
in {
config = mkIf (elem "gaming" profiles) {
programs.ns-usbloader = {
enable = true;
};
};
}