nixpkgs/nixos/modules/services/desktops/bamf.nix
Wolfgang Walther c283f32d29
treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

29 lines
361 B
Nix

# Bamf
{
config,
lib,
pkgs,
...
}:
{
meta = {
maintainers = [ ];
};
###### interface
options = {
services.bamf = {
enable = lib.mkEnableOption "bamf";
};
};
###### implementation
config = lib.mkIf config.services.bamf.enable {
services.dbus.packages = [ pkgs.bamf ];
systemd.packages = [ pkgs.bamf ];
};
}