The other part of dotfiles
This commit is contained in:
parent
2fbfed0e7a
commit
9f1ba4a64b
25 changed files with 1089 additions and 0 deletions
17
modules/services/nextcloud-podman.nix
Normal file
17
modules/services/nextcloud-podman.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ lib, config, pkgs, ... }:
|
||||
let
|
||||
cfg = config.nextcloud-pd;
|
||||
in
|
||||
{
|
||||
options.nextcloud-pd = {
|
||||
enable = lib.mkEnableOption "Enable Nextcloud module";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
podman.enable = true;
|
||||
|
||||
virtualisation.oci-containers.containers = { };
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue