summaryrefslogtreecommitdiff
path: root/os/srv/oci.nix
diff options
context:
space:
mode:
authoradi <adikro@disroot.org>2026-07-29 17:09:58 +0200
committeradi <adikro@disroot.org>2026-07-29 17:09:58 +0200
commit39a2b09c27bb74c9e59d1772764f901e3c8fb9e4 (patch)
tree0ba58e6fbf086a85d875df1c10f6d23bc3bbc7da /os/srv/oci.nix
parent8a820cacee1ff07ae7397d053b26e66f7086a4a4 (diff)
revamped flake.nix, removed homelab specific modulesstaging
Diffstat (limited to 'os/srv/oci.nix')
-rw-r--r--os/srv/oci.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/os/srv/oci.nix b/os/srv/oci.nix
deleted file mode 100644
index ea680fd..0000000
--- a/os/srv/oci.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- config,
- lib,
- pkgs,
- ...
-}:
-let
- cfg = config.os.srv.oci;
-in
-{
- options.os.srv.oci.enable = lib.mkEnableOption "OCI container support via Podman";
- config = lib.mkIf cfg.enable {
- virtualisation = {
- containers = {
- enable = true;
- storage.settings.driver = "zfs";
- };
- podman = {
- enable = true;
- dockerCompat = true;
- defaultNetwork.settings.dns_enabled = true;
- autoPrune = {
- enable = true;
- dates = "weekly";
- flags = [ "--all" ];
- };
- };
- oci-containers.backend = "podman";
- };
-
- environment.systemPackages = with pkgs; [
- podman-tui
- podman-compose
- ];
- };
-}