mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 19:51:34 +01:00
8 lines
206 B
Nix
8 lines
206 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = lib.mapAttrsToList (name: _: ./${name}) (
|
|
lib.filterAttrs (_: value: value == "directory") (builtins.readDir ./.)
|
|
);
|
|
|
|
virtualisation.oci-containers.backend = "docker";
|
|
}
|