blob: 7e8994c740c4410ac85a751a314f2bb4680d386d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ lib, ... }:
{
virtualisation.podman = {
enable = true;
enableNvidia = lib.mkForce true;
defaultNetwork.settings.dns_enabled = true;
autoPrune = {
enable = true;
dates = "daily";
};
};
}
|