Initial commit

This commit is contained in:
Veneficium 2024-06-11 23:59:03 +02:00
commit 69d741b98b
29 changed files with 718 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{ lib, config, ... }: {
#todo look further into virt options
options = {
settings.programs.docker.enable = lib.mkEnableOption "enables docker";
};
config = lib.mkIf config.settings.programs.docker.enable {
virtualisation.docker.enable = true;
};
}

View file

@ -0,0 +1,9 @@
{ config, lib, ... }: {
options = {
settings.programs.tailscale.enable = lib.mkEnableOption "enable tailscale";
};
config = lib.mkIf config.settings.programs.tailscale.enable {
services.tailscale.enable = true;
};
}