From 7133046a8bb5abc55169bce41738617f9d4dde09 Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Sun, 4 May 2025 02:38:07 +0530 Subject: [PATCH] feat: Use deploy-rs Signed-off-by: uttarayan21 --- deploy.nix | 2 +- steamdeck/default.nix | 5 ++++- steamdeck/tailscale.nix | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/deploy.nix b/deploy.nix index 413b4507..d2101f1a 100644 --- a/deploy.nix +++ b/deploy.nix @@ -47,7 +47,7 @@ }; }; deck = { - hostname = "deck"; + hostname = "192.168.0.183"; profiles.system = { sshUser = "deck"; path = inputs.deploy-rs.lib.x86_64-linux.activate.home-manager self.homeConfigurations.deck; diff --git a/steamdeck/default.nix b/steamdeck/default.nix index 852e779a..0d9cc40b 100644 --- a/steamdeck/default.nix +++ b/steamdeck/default.nix @@ -3,7 +3,9 @@ config, ... }: { - imports = [./tailscale.nix]; + imports = [ + ./tailscale.nix + ]; programs = {home-manager.enable = true;}; home = { username = "deck"; @@ -11,6 +13,7 @@ packages = with pkgs; [ _1password-cli tailscale + (nixvim.makeNixvim (import ../neovim)) ]; stateVersion = "24.11"; }; diff --git a/steamdeck/tailscale.nix b/steamdeck/tailscale.nix index 219ec000..312876c3 100644 --- a/steamdeck/tailscale.nix +++ b/steamdeck/tailscale.nix @@ -1,6 +1,6 @@ { pkgs, config, + ... }: { - services.tailscale.enable = true; }