typioca: 2.7.0 -> 2.8.0
[NixPkgs.git] / nixos / modules / programs / pantheon-tweaks.nix
blob82f93619db158c592bca9375044619145e9d400c
1 { config, lib, pkgs, ... }:
3 with lib;
6   meta = {
7     maintainers = teams.pantheon.members;
8   };
10   ###### interface
11   options = {
12     programs.pantheon-tweaks.enable = mkEnableOption (lib.mdDoc "Pantheon Tweaks, an unofficial system settings panel for Pantheon");
13   };
15   ###### implementation
16   config = mkIf config.programs.pantheon-tweaks.enable {
17     services.xserver.desktopManager.pantheon.extraSwitchboardPlugs = [ pkgs.pantheon-tweaks ];
18   };