summaryrefslogtreecommitdiff
path: root/systems/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-11-14 19:38:13 -0500
committerseth <[email protected]>2023-11-14 19:38:13 -0500
commitf281097023293a482498412d3760f350663b7314 (patch)
tree6f89ba89e92645e81acfa73223af044f38b06e1a /systems/default.nix
parent94dc521310b34b80158d1a0ab65d4daa3a44d81e (diff)
systems: nixinate -> deploy-rs (again)
this is for rollbacks during the deploy workflow
Diffstat (limited to 'systems/default.nix')
-rw-r--r--systems/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/systems/default.nix b/systems/default.nix
index 023dc59..5c6703e 100644
--- a/systems/default.nix
+++ b/systems/default.nix
@@ -24,6 +24,10 @@
mapNixOS = mapSystems inputs.nixpkgs.lib.nixosSystem;
inherit (import ./common.nix {inherit inputs self;}) darwin nixos server;
in {
+ imports = [
+ ./deploy.nix
+ ];
+
flake = {
darwinConfigurations = mapDarwin {
caroline = {
@@ -72,8 +76,4 @@ in {
inherit (inputs) openwrt-imagebuilder;
});
};
-
- perSystem = {system, ...}: {
- apps = (inputs.nixinate.nixinate.${system} self).nixinate;
- };
}