2023-08-17 13:40:42 +02:00
|
|
|
{ config, lib, ... }:
|
|
|
|
{
|
2024-06-08 22:22:04 +02:00
|
|
|
imports = [
|
|
|
|
./upgrade-diff.nix
|
|
|
|
./tor-ssh.nix
|
|
|
|
];
|
2023-08-17 13:40:42 +02:00
|
|
|
|
|
|
|
options.components.nixos.enable = lib.mkOption {
|
|
|
|
type = lib.types.bool;
|
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkIf (config.components.nixos.enable) { };
|
|
|
|
|
|
|
|
}
|