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