From 39e40b1a4ffcb4f14cbca7a603738fd3a0a2ee5f Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Tue, 1 Oct 2024 14:50:04 +0530 Subject: [PATCH] feat: Added deploy-rs items --- flake.nix | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/flake.nix b/flake.nix index aad85b25..2b73b430 100644 --- a/flake.nix +++ b/flake.nix @@ -118,15 +118,6 @@ isServer = true; live = true; } - { - name = "phoenix"; - system = "x86_64-linux"; - user = "fs0c131y"; - isNix = true; - hasGui = false; - isServer = true; - live = true; - } { name = "ryu"; system = "x86_64-linux"; @@ -224,18 +215,27 @@ packages = inputs.neovim.packages; deploy = { - nodes.mirai = { - hostname = "ryu"; - profiles.system = { - user = "servius"; - path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.mirai; + nodes = { + ryu = { + hostname = "ryu"; + profiles.system = { + user = "servius"; + path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.ryu; + }; }; - }; - nodes.mbpro = { - hostname = "Uttarayans-MacBook-Pro.local"; - profiles.system = { - user = "root"; - path = deploy-rs.lib.aarch64-darwin.activate.darwin self.darwinConfigurations.Uttarayans-MacBook-Pro; + mirai = { + hostname = "mirai"; + profiles.system = { + user = "fs0c131y"; + path = deploy-rs.lib.x86_64-linux.activate.home-manager self.homeConfigurations.mirai; + }; + }; + mbpro = { + hostname = "Uttarayans-MacBook-Pro.local"; + profiles.system = { + user = "root"; + path = deploy-rs.lib.aarch64-darwin.activate.darwin self.darwinConfigurations.Uttarayans-MacBook-Pro; + }; }; }; };