fix: add 'hetzner' module

This commit is contained in:
2026-03-11 21:25:32 +01:00
committed by hektor
parent 1137705b20
commit abe101d58e
3 changed files with 9 additions and 0 deletions
+1
View File
@@ -13,6 +13,7 @@ in
imports = [
../../modules/desktop/niri
../../modules/git.nix
../../modules/hetzner
../../modules/k9s.nix
../../modules/ssh.nix
../../modules/taskwarrior.nix
+1
View File
@@ -13,6 +13,7 @@ in
../../modules/anki.nix
../../modules/desktop/niri
../../modules/git.nix
../../modules/hetzner
../../modules/k9s.nix
../../modules/ssh.nix
../../modules/taskwarrior.nix
+7
View File
@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home = {
packages = with pkgs; [ hcloud ];
};
}