summary refs log tree commit diff
path: root/nixos/modules/services/desktops/bamf.nix
blob: 37121c219a377abbfc3715bcea4bfc7d1de1df9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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 ];
  };
}