mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 13:29:32 +01:00
added missing imports
This commit is contained in:
parent
1b6566b1ae
commit
fe06885b78
|
@ -1,4 +1,9 @@
|
|||
{ pkgs, lib }:
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
|
||||
let
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
services.calibre-web = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ }:
|
||||
{ ... }:
|
||||
{
|
||||
services.grafana = {
|
||||
enable = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib }:
|
||||
{ config, lib, ... }:
|
||||
with lib;
|
||||
# TODO: add access to series and TV folders.
|
||||
let
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config }:
|
||||
{ config, ... }:
|
||||
{
|
||||
sops.secrets."searx" = {
|
||||
sopsFile = ./secrets/searx.env;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, lib }:
|
||||
{ config, lib, ... }:
|
||||
with lib;
|
||||
|
||||
let
|
||||
|
|
Loading…
Reference in a new issue