ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
75 lines
1.8 KiB
Nix
75 lines
1.8 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.services.packagekit;
|
|
|
|
inherit (lib)
|
|
mkEnableOption mkOption mkIf mkRemovedOptionModule types
|
|
listToAttrs recursiveUpdate;
|
|
|
|
iniFmt = pkgs.formats.ini { };
|
|
|
|
confFiles = [
|
|
(iniFmt.generate "PackageKit.conf" (recursiveUpdate
|
|
{
|
|
Daemon = {
|
|
DefaultBackend = "nix";
|
|
KeepCache = false;
|
|
};
|
|
}
|
|
cfg.settings))
|
|
|
|
(iniFmt.generate "Vendor.conf" (recursiveUpdate
|
|
{
|
|
PackagesNotFound = rec {
|
|
DefaultUrl = "https://github.com/NixOS/nixpkgs";
|
|
CodecUrl = DefaultUrl;
|
|
HardwareUrl = DefaultUrl;
|
|
FontUrl = DefaultUrl;
|
|
MimeUrl = DefaultUrl;
|
|
};
|
|
}
|
|
cfg.vendorSettings))
|
|
];
|
|
|
|
in
|
|
{
|
|
imports = [
|
|
(mkRemovedOptionModule [ "services" "packagekit" "backend" ] "Always set to Nix.")
|
|
];
|
|
|
|
options.services.packagekit = {
|
|
enable = mkEnableOption (lib.mdDoc ''
|
|
PackageKit provides a cross-platform D-Bus abstraction layer for
|
|
installing software. Software utilizing PackageKit can install
|
|
software regardless of the package manager.
|
|
'');
|
|
|
|
settings = mkOption {
|
|
type = iniFmt.type;
|
|
default = { };
|
|
description = lib.mdDoc "Additional settings passed straight through to PackageKit.conf";
|
|
};
|
|
|
|
vendorSettings = mkOption {
|
|
type = iniFmt.type;
|
|
default = { };
|
|
description = lib.mdDoc "Additional settings passed straight through to Vendor.conf";
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
services.dbus.packages = with pkgs; [ packagekit ];
|
|
|
|
environment.systemPackages = with pkgs; [ packagekit ];
|
|
|
|
systemd.packages = with pkgs; [ packagekit ];
|
|
|
|
environment.etc = listToAttrs (map
|
|
(e:
|
|
lib.nameValuePair "PackageKit/${e.name}" { source = e; })
|
|
confFiles);
|
|
};
|
|
}
|