depot/third_party/nixpkgs/nixos/modules/services/desktops/bamf.nix

28 lines
424 B
Nix
Raw Normal View History

# Bamf
{ config, lib, pkgs, ... }:
with lib;
{
meta = with lib; {
maintainers = with maintainers; [ ] ++ teams.pantheon.members;
};
###### interface
options = {
services.bamf = {
enable = mkEnableOption (lib.mdDoc "bamf");
};
};
###### implementation
config = mkIf config.services.bamf.enable {
services.dbus.packages = [ pkgs.bamf ];
systemd.packages = [ pkgs.bamf ];
};
}