init commit

This commit is contained in:
Luka Dekanozishvili 2026-01-19 21:47:18 +00:00
commit 181e6f681e
22 changed files with 940 additions and 0 deletions

13
pkgs/virtualisation.nix Normal file
View file

@ -0,0 +1,13 @@
{ ... }:
{
# Auto-prune old containers
virtualisation.podman = {
enable = true;
autoPrune = {
enable = true;
flags = [ "--all" ];
};
};
}