summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorMike Vink <mike1994vink@gmail.com>2023-05-21 13:09:18 +0200
committerMike Vink <mike1994vink@gmail.com>2023-05-21 13:09:18 +0200
commit1a7436e8ef449996824f76f5e308fb02e075e043 (patch)
treec2c91f1e97580beaa0341af644717f1c3901def1 /home
parent2d1f543b81f81a5e286ff198867b3e7ffb1f4120 (diff)
fix some stuff
Diffstat (limited to 'home')
-rw-r--r--home/kakoune.nix1
-rw-r--r--home/st.nix10
2 files changed, 6 insertions, 5 deletions
diff --git a/home/kakoune.nix b/home/kakoune.nix
index 20567fa..13bb267 100644
--- a/home/kakoune.nix
+++ b/home/kakoune.nix
@@ -31,6 +31,7 @@
require-module tmux
require-module tmux-repl
alias global terminal tmux-terminal-vertical
+ alias global sp new
'';
};
}
diff --git a/home/st.nix b/home/st.nix
index 1d3a504..6603337 100644
--- a/home/st.nix
+++ b/home/st.nix
@@ -5,17 +5,17 @@
home-manager,
...
}: let
- st-luke-smith = with pkgs; (st.overrideAttrs (oldAttrs: rec {
+ st-fork = with pkgs; (st.overrideAttrs (oldAttrs: rec {
src = fetchFromGitHub {
- owner = "LukeSmithxyz";
+ owner = "mvinkio";
repo = "st";
- rev = "36d225d71d448bfe307075580f0d8ef81eeb5a87";
- sha256 = "sha256-u8E8/aqbL3T4Sz0olazg7VYxq30haRdSB1SRy7MiZiA=";
+ rev = "67b580fc4f0bbe1862caf5e71f14b768036904c2";
+ sha256 = "sha256-60ougrGKYL7uwfxePi/YhkHCihlLiwAomh0hpVAcRtg=";
};
buildInputs = oldAttrs.buildInputs ++ [harfbuzz];
}));
in {
home.packages = [
- st-luke-smith
+ st-fork
];
}