nixos-config/components/nixos/boot/default.nix
Ingolf Wagner 8327f1860d
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 12m28s
made tor work
2024-08-08 01:12:10 +02:00

17 lines
249 B
Nix

{ lib, config, ... }:
{
imports = [
./ssh.nix
./tor.nix
];
options.components.nixos.boot.enable = lib.mkOption {
type = lib.types.bool;
default = false;
};
config = lib.mkIf (config.components.nixos.boot.enable) { };
}