16 lines
235 B
Nix
16 lines
235 B
Nix
|
{ 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) { };
|
||
|
|
||
|
}
|