11 lines
231 B
Nix
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) ];
|
||
|
};
|
||
|
}
|