16 lines
No EOL
443 B
Nix
16 lines
No EOL
443 B
Nix
{ inputs, config, ... }:
|
|
|
|
{
|
|
imports = [ inputs.playit.nixosModules.default ];
|
|
nix.settings = {
|
|
trusted-substituters = [ "https://playit-nixos-module.cachix.org" ];
|
|
trusted-public-keys = [ "playit-nixos-module.cachix.org-1:22hBXWXBbd/7o1cOnh+p0hpFUVk9lPdRLX3p5YSfRz4=" ];
|
|
};
|
|
|
|
sops.secrets."playit/playit.toml" = {};
|
|
|
|
services.playit = {
|
|
enable = true;
|
|
secretPath = config.sops.secrets."playit/playit.toml".path;
|
|
};
|
|
} |