home-manager/modules/services/podman-linux/default.nix
Nicholas Hassan 14bbb67c08
podman: add new module 'podman'
Adds a new Podman module for creating user containers and networks as
systemd services. These are installed to the user's XDG_CONFIG/systemd/user directory.
2024-05-12 22:30:17 +09:30

11 lines
231 B
Nix

{ pkgs, lib, ... }:
{
imports =
[ ./services.nix ./networks.nix ./containers.nix ./install-quadlet.nix ];
config = {
assertions =
[ (lib.hm.assertions.assertPlatform "podman" pkgs lib.platforms.linux) ];
};
}