Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
748948bfbf WIP generic-device-plugin 2025-01-03 21:39:15 +01:00
3 changed files with 14 additions and 3 deletions

6
flake.lock generated
View file

@ -688,11 +688,11 @@
"treefmt-nix": "treefmt-nix_2"
},
"locked": {
"lastModified": 1735551011,
"narHash": "sha256-rp26PcdLjfgxsCeaSeZ0K1rGPN1Ap7YCy1UVuo9gRJA=",
"lastModified": 1735726395,
"narHash": "sha256-rwhsZuwJzJ825Et7YI73G7+wHiPLFfx3SOnozWZfLJ0=",
"owner": "pizzapim",
"repo": "NixNG",
"rev": "aa35f7a3d426e906b15e3083c90bf2972bcfb4b4",
"rev": "dbbbb22d8feed064455a8653a0450b3da5a31424",
"type": "github"
},
"original": {

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 = {
};
};
}