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






                           
          
                                        

    















                                             
# Bamf

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

with lib;

{
  meta = {
    maintainers = with maintainers; [ ];
  };

  ###### interface

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

  ###### implementation

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

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