From 4b4cac08b74c4dd040c334a04882183953933b60 Mon Sep 17 00:00:00 2001
From: notohh <github@notohh.dev>
Date: Wed, 2 Apr 2025 00:32:35 -0400
Subject: [PATCH] default: import deployment nodes

flake.nix: remove deploy
---
 flake.nix         | 1 -
 hosts/default.nix | 1 +
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/flake.nix b/flake.nix
index fc706e7..b09cf42 100755
--- a/flake.nix
+++ b/flake.nix
@@ -7,7 +7,6 @@
         ./hosts
         ./overlays
         ./modules
-        ./hosts/deploy.nix
         ./home/profiles
       ];
       systems = ["x86_64-linux"];
diff --git a/hosts/default.nix b/hosts/default.nix
index cef5707..a440398 100644
--- a/hosts/default.nix
+++ b/hosts/default.nix
@@ -3,6 +3,7 @@
   homeImports,
   ...
 }: {
+  imports = [./deploy.nix];
   flake.nixosConfigurations = let
     inherit (inputs.nixpkgs.lib) nixosSystem;
     specialArgs = {inherit inputs;};