From 71ec81c2e6f8c5e7c1f3b898a669ad807b1d8cf5 Mon Sep 17 00:00:00 2001 From: Tyler Mac Date: Wed, 19 Aug 2026 20:06:54 -0400 Subject: [PATCH] more stuff --- flake.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 5a2ca57..5892079 100644 --- a/flake.nix +++ b/flake.nix @@ -6,9 +6,12 @@ home-manager = { url = "github:nix-community/home-manager/release-23.11"; }; + tmux-flake = { + url = "github:jakehamilton/tmux"; + }; }; - outputs = { self, nixpkgs, home-manager }: + outputs = { self, nixpkgs, home-manager, tmux-flake }: let system = "x86_64-linux"; pkgs = import nixpkgs { @@ -18,12 +21,14 @@ }; }; in { - # Use the local tmux package as a fallback to resolve archive errors - # This ensures the configuration works even if remote repository issues occur + # Use tmux from jakehamilton/tmux repository homeConfigurations."tyler" = home-manager.lib.homeManagerConfiguration { inherit pkgs; modules = [ ({ pkgs, ... }: { + # Use the tmux package from jakehamilton/tmux repository + programs.tmux.package = tmux-flake.packages.${system}.tmux; + # Include all other settings from the original home.nix imports = [ ./home-manager/home.nix ]; })