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