Standalone NixOS modules: ai, bluetooth, dev, fwupd, libvirtd, networkmanager, podman Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
335 B
Nix
15 lines
335 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.podman = { config, lib, pkgs, ... }: {
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
autoPrune.enable = true;
|
|
extraPackages = [ pkgs.podman-compose ];
|
|
};
|
|
|
|
systemd = {
|
|
services.podman-auto-update.enable = true;
|
|
timers.podman-auto-update.enable = true;
|
|
};
|
|
};
|
|
}
|