boxen/profiles/default.nix

13 lines
317 B
Nix
Raw Normal View History

2021-08-06 11:09:21 +00:00
{ config, lib, pkgs, ... }:
with lib; {
imports = mapAttrsToList (k: _: ./. + ("/" + k))
(filterAttrs (_: v: v == "directory") (builtins.readDir ./.));
options.profiles = mkOption {
default = [ ];
description = "List of configuration profiles to activate";
type = types.listOf types.str;
};
}