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; }