summary refs log blame commit diff
path: root/nixos/modules/services/desktops/bamf.nix
blob: 13de3a44328f4e292beae48f5f5824d43c2d40f4 (plain) (tree)
1
2
3
4
5
6
7
8
9






                           

                                                                  

    















                                             
# Bamf

{ config, lib, pkgs, ... }:

with lib;

{
  meta = with lib; {
    maintainers = with maintainers; [ ] ++ teams.pantheon.members;
  };

  ###### interface

  options = {
    services.bamf = {
      enable = mkEnableOption "bamf";
    };
  };

  ###### implementation

  config = mkIf config.services.bamf.enable {
    services.dbus.packages = [ pkgs.bamf ];

    systemd.packages = [ pkgs.bamf ];
  };
}