mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
11 lines
284 B
Nix
11 lines
284 B
Nix
{ desktop, lib, ... }:
|
|
{
|
|
imports =
|
|
[
|
|
./docker.nix
|
|
# ./podman.nix
|
|
]
|
|
++ lib.optional (builtins.isString desktop) ./desktop.nix;
|
|
# TODO: Make containerization tools dynamic
|
|
# ++ lib.optional (builtins.isString containerization) ./${containerization}.nix;
|
|
}
|