nixos-config/components/nixos/boot/default.nix

17 lines
249 B
Nix
Raw Normal View History

{ lib, config, ... }:
{
imports = [
./ssh.nix
2024-08-08 01:12:10 +02:00
./tor.nix
];
options.components.nixos.boot.enable = lib.mkOption {
type = lib.types.bool;
default = false;
};
config = lib.mkIf (config.components.nixos.boot.enable) { };
}