nix

configuration files that power my machines
Log | Files | Refs | README | LICENSE

commit 1251539ef82116f9fbdb4cccfcf44142bf33ab99
parent d972735a3731b672ea555edd6c06719bd7fd9040
Author: mtmn <miro@haravara.org>
Date:   Sun, 17 May 2026 00:13:09 +0200

chore: update flakes, tmux aliases

Diffstat:
Mflake.lock | 24++++++++++++------------
Mhosts/void/default.nix | 9++++-----
Mhosts/void/overlays/config/shell/rc/void | 0
Mmodules/mixins/dotfiles/config/shell/rc/aliased-short-names | 2+-
Mmodules/mixins/dotfiles/config/shell/rc/functions | 4++--
5 files changed, 19 insertions(+), 20 deletions(-)

diff --git a/flake.lock b/flake.lock @@ -134,11 +134,11 @@ ] }, "locked": { - "lastModified": 1777713215, - "narHash": "sha256-8GzXDOXckDWwST8TY5DbwYFjdvQLlP7K9CLSVx6iTTo=", + "lastModified": 1778958912, + "narHash": "sha256-6pvS9rIF9mZRj1ENwu9fDLHeG1JFDTCpRyy6vJhXkTA=", "owner": "nix-community", "repo": "disko", - "rev": "63b4e7e6cf75307c1d26ac3762b886b5b0247267", + "rev": "6e8dc7aa0e65fce67c76e18227a13a7d529f2cdf", "type": "github" }, "original": { @@ -261,11 +261,11 @@ ] }, "locked": { - "lastModified": 1778858474, - "narHash": "sha256-uOh5fCoxOgdFa50WymuhCwJKuEVv/Eo4VYjK0SgzlPs=", + "lastModified": 1779027260, + "narHash": "sha256-ZbgWWFQmSyM3HQ31nAZk2hJ7OSeNr9uRFHL8jCifY9M=", "owner": "nix-community", "repo": "home-manager", - "rev": "ca77575d39c908de876c10f93704532689df546f", + "rev": "bcb774cfc3268120cd61808629f9aa7dad3750a2", "type": "github" }, "original": { @@ -303,11 +303,11 @@ ] }, "locked": { - "lastModified": 1778393439, - "narHash": "sha256-mOtQxUjtKaPHLeoLOY/YEDctmud1X9KwJr4kE1MJ3Wc=", + "lastModified": 1778999127, + "narHash": "sha256-V5GquqJvAqwFTcpN6hxKSQAtwuJFRUEHmyNKbeaTQDg=", "owner": "nix-community", "repo": "nix-index-database", - "rev": "01466c414c7357ae2ce32be4a272a7c69e94ab5f", + "rev": "f680e0d3c1dbefe298c423691662e238496890f2", "type": "github" }, "original": { @@ -332,11 +332,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1778794387, - "narHash": "sha256-BL04pOS9453Awkeb9f90XBJXBSkWxN+vB7HIgnL0iMM=", + "lastModified": 1778869304, + "narHash": "sha256-30sZNZoA1cqF5JNO9fVX+wgiQYjB7HJqqJ4ztCDeBZE=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "8a1b0127302ea51e05bf4ea5a291743fac442406", + "rev": "d233902339c02a9c334e7e593de68855ad26c4cb", "type": "github" }, "original": { diff --git a/hosts/void/default.nix b/hosts/void/default.nix @@ -132,11 +132,6 @@ [fnlfmt] ]; - guile = [ - guile - haunt - ]; - gui = [ picard xnviewmp @@ -154,6 +149,10 @@ other = [ babashka nickel + guile + haunt + go_1_26 + gopls ]; })); } diff --git a/hosts/void/overlays/config/shell/rc/void b/hosts/void/overlays/config/shell/rc/void Binary files differ. diff --git a/modules/mixins/dotfiles/config/shell/rc/aliased-short-names b/modules/mixins/dotfiles/config/shell/rc/aliased-short-names @@ -11,7 +11,7 @@ alias l='ls' alias ll='ls -l' alias tls='tmux list-sessions' -alias tms="tmux ls -F '#{?session_attached,#{session_name},}' | grep -v '^$'" +alias tms="tmux display-message -p '#{session_name}'" alias mgr='magdalena grep' alias mgrf='cdg && magdalena grep && cd -' diff --git a/modules/mixins/dotfiles/config/shell/rc/functions b/modules/mixins/dotfiles/config/shell/rc/functions @@ -152,9 +152,9 @@ t() { fi else if [ -n "$TMUX" ]; then - tmux new-session -d -s "${session}" && tmux switch-client -t "${session}" + tmux new-session -d -c "$HOME" -s "${session}" && tmux switch-client -t "${session}" else - tmux new -s "${session}" + tmux new -c "$HOME" -s "${session}" fi fi }