at 22.05-pre 445 B view raw
1{ config, lib, pkgs, ... }: 2 3with lib; 4 5{ 6 meta = { 7 maintainers = teams.pantheon.members; 8 }; 9 10 ###### interface 11 options = { 12 programs.pantheon-tweaks.enable = mkEnableOption "Pantheon Tweaks, an unofficial system settings panel for Pantheon"; 13 }; 14 15 ###### implementation 16 config = mkIf config.programs.pantheon-tweaks.enable { 17 services.xserver.desktopManager.pantheon.extraSwitchboardPlugs = [ pkgs.pantheon-tweaks ]; 18 }; 19}