From a5aeddc5c281ae4ff284aa9ac134fda7802ac8c9 Mon Sep 17 00:00:00 2001 From: hektor Date: Sun, 18 Jan 2026 10:02:20 +0100 Subject: [PATCH] feat: add 'hcloud' module --- home/modules/hcloud/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/home/modules/hcloud/default.nix b/home/modules/hcloud/default.nix index 7196877..1d8c1cc 100644 --- a/home/modules/hcloud/default.nix +++ b/home/modules/hcloud/default.nix @@ -1,5 +1,4 @@ { - config, lib, osConfig ? null, ... @@ -10,7 +9,8 @@ let in { config = { - warnings = lib.optional (!isNixOS) - "hcloud module requires NixOS host configuration. This module will not work with standalone home-manager."; + warnings = + lib.optional (!isNixOS) + "hcloud module requires NixOS host configuration. This module will not work with standalone home-manager."; }; }