This repository has been archived on 2025-03-05. You can view files and clone it, but cannot push or open issues or pull requests.

17 lines
252 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
2023-02-05 14:36:38 +01:00
let cfg = config.features.gaming.sunshine;
in {
2023-02-01 12:38:23 +01:00
options.features.gaming.sunshine.enable = mkEnableOption "enable Sunshine";
config = mkIf cfg.enable {
home.packages = with pkgs; [ sunshine ];
};
}