WIP generic-device-plugin
This commit is contained in:
parent
4503a8f541
commit
748948bfbf
3 changed files with 14 additions and 3 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -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": {
|
||||
|
|
|
@ -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:
|
||||
|
|
10
nixng-configurations/generic-device-plugin.nix
Normal file
10
nixng-configurations/generic-device-plugin.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{globals, ...}: {
|
||||
dinit.enable = true;
|
||||
init.services.generic-device-plugin.shutdownOnExit = true;
|
||||
|
||||
services.generic-device-plugin = {
|
||||
enable = true;
|
||||
settings = {
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue