nixos/bamf: init

wip/yesman
Jan Tojnar 6 years ago
parent b4d9f481f5
commit bf09bb5ef0
  1. 1
      nixos/modules/module-list.nix
  2. 23
      nixos/modules/services/desktops/bamf.nix

@ -220,6 +220,7 @@
./services/databases/stanchion.nix
./services/databases/virtuoso.nix
./services/desktops/accountsservice.nix
./services/desktops/bamf.nix
./services/desktops/dleyna-renderer.nix
./services/desktops/dleyna-server.nix
./services/desktops/flatpak.nix

@ -0,0 +1,23 @@
# Bamf
{ config, lib, pkgs, ... }:
with lib;
{
###### interface
options = {
services.bamf = {
enable = mkEnableOption "bamf";
};
};
###### implementation
config = mkIf config.services.bamf.enable {
services.dbus.packages = [ pkgs.bamf ];
systemd.packages = [ pkgs.bamf ];
};
}
Loading…
Cancel
Save