nixpkgs/nixos/modules/services/desktops/bamf.nix
Wolfgang Walther 1c6af9ba0a
treewide: remove unused with
Auto-fixed by nixf-diagnose.

(cherry picked from commit c283f32d29)
2025-10-05 12:38:28 +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 ];
};
}