add single-file NixOS aspects

Standalone NixOS modules: ai, bluetooth, dev, fwupd, libvirtd,
networkmanager, podman

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
William 2026-02-06 22:36:37 -03:00
parent 92e16d0032
commit 5247bbda03
7 changed files with 87 additions and 0 deletions

15
aspects/podman.nix Normal file
View file

@ -0,0 +1,15 @@
{ ... }:
{
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;
};
};
}