add anubis
This commit is contained in:
parent
83411ed26d
commit
b87a58c1cf
3 changed files with 19 additions and 1 deletions
|
|
@ -139,6 +139,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
anubis.enable = lib.mkEnableOption "anubis";
|
||||
syncthing.enable = lib.mkEnableOption "syncthing";
|
||||
jellyfin.enable = lib.mkEnableOption "jellyfin";
|
||||
nextcloud.enable = lib.mkEnableOption "nextcloud";
|
||||
|
|
|
|||
14
modules/nixos/services/anubis.nix
Normal file
14
modules/nixos/services/anubis.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
config = lib.mkMerge [
|
||||
(lib.mkIf config.osbmModules.services.anubis.enable {
|
||||
services.anubis = {
|
||||
enable = true;
|
||||
};
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./anubis.nix
|
||||
./atticd.nix
|
||||
./caddy.nix
|
||||
./cloudflare-dyndns.nix
|
||||
|
|
@ -11,11 +12,13 @@
|
|||
./glance.nix
|
||||
./hydra.nix
|
||||
./jellyfin.nix
|
||||
./system-logger
|
||||
./syncthing.nix
|
||||
./tailscale.nix
|
||||
./vaultwarden.nix
|
||||
./vscode-server.nix
|
||||
|
||||
# custom services
|
||||
./system-logger
|
||||
./wanikani-bypass-lessons.nix
|
||||
./wanikani-fetch-data
|
||||
./wanikani-stats
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue