nixos/modules/default.nix

18 lines
240 B
Nix
Raw Normal View History

2023-04-07 21:37:23 +01:00
{ config, lib, ... }:
{
imports = [
2023-04-08 15:29:11 +01:00
./resilio.nix
2023-04-17 21:22:04 +01:00
./tailscale.nix
2023-04-07 21:37:23 +01:00
./www/global.nix
./www/www-repo.nix
];
2023-04-08 15:29:11 +01:00
options.custom = {
user = lib.mkOption {
type = lib.types.str;
default = "jake";
};
};
2023-04-07 21:37:23 +01:00
}