From 64379d7ab48da9269f6c628473f50b3bcbbc1080 Mon Sep 17 00:00:00 2001 From: William Date: Fri, 17 Oct 2025 11:01:11 -0300 Subject: [PATCH] fixed some stuff --- deploy.nix | 6 ++++-- devShells.nix | 6 ++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/deploy.nix b/deploy.nix index 2e69377..40a21e9 100644 --- a/deploy.nix +++ b/deploy.nix @@ -1,8 +1,9 @@ { inputs, self, ... }: { - flake.deploy.nodes = { + flake.deploy = { remoteBuild = true; - alexandria = { + nodes = { + alexandria = { hostname = "alexandria"; profiles.system = { sshUser = "user"; @@ -36,6 +37,7 @@ }; }; }; +}; perSystem = { system, ... }: { diff --git a/devShells.nix b/devShells.nix index 82f97e9..e5c4a33 100644 --- a/devShells.nix +++ b/devShells.nix @@ -1,4 +1,4 @@ -{ inputs, ... }: +{ ... }: { perSystem = @@ -8,10 +8,8 @@ packages = with pkgs; [ nil nixfmt-rfc-style + deploy-rs ]; - shellHook = '' - alias deploy='${inputs.deploy-rs.packages.${pkgs.system}.default}/bin/deploy --skip-checks' - ''; }; }; }