WIP generic-device-plugin

This commit is contained in:
Pim Kunis 2025-01-03 21:39:15 +01:00
parent 4503a8f541
commit 748948bfbf
3 changed files with 14 additions and 3 deletions

View file

@ -23,6 +23,7 @@ flake-utils.lib.eachDefaultSystem (system: let
bazarr = ./bazarr.nix;
prowlarr = ./prowlarr.nix;
blog = ./blog.nix;
generic-device-plugin = ./generic-device-plugin.nix;
};
in {
nixngConfigurations = builtins.mapAttrs (name: configFile:

View file

@ -0,0 +1,10 @@
{globals, ...}: {
dinit.enable = true;
init.services.generic-device-plugin.shutdownOnExit = true;
services.generic-device-plugin = {
enable = true;
settings = {
};
};
}