nixos/services.bamf: remove with lib;

This commit is contained in:
Felix Buehler 2024-08-28 21:18:57 +02:00 committed by Jörg Thalheim
parent 13c9b59247
commit 9faf712298

View File

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