chore: reformat using nixd and nixfmt-rfc-style

This commit is contained in:
Veneficium 2024-09-18 18:34:21 +02:00
parent 1ea540535e
commit 813cc599f0
38 changed files with 280 additions and 166 deletions

View file

@ -1,9 +1,8 @@
{ lib, config, ... }: {
{ lib, config, ... }:
{
options.settings.programs.docker = {
enable = lib.mkEnableOption "enables docker";
};
config = lib.mkIf config.settings.programs.docker.enable {
virtualisation.docker.enable = true;
};
config = lib.mkIf config.settings.programs.docker.enable { virtualisation.docker.enable = true; };
}