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

16 lines
235 B
Nix
Raw Normal View History

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