summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2024-05-28 04:55:34 +0000
committerGitHub <noreply@github.com>2024-05-28 04:55:34 +0000
commit90cbd724ce0d2d30c694370e52e43d9994d49459 (patch)
tree43dc27a74833417c63459d9e8bc66a6a2058456c
parent000214d272c28df92cc9065ba7a78f24cbfd1f0e (diff)
update suckless tools
-rw-r--r--configuration.nix7
-rw-r--r--home.nix4
2 files changed, 7 insertions, 4 deletions
diff --git a/configuration.nix b/configuration.nix
index 4b24286..7c4e2b6 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -56,7 +56,7 @@
windowManager.dwm.package = pkgs.dwm.overrideAttrs {
src = fetchGit {
url = "https://github.com/ozpv/dwm.git";
- rev = "179c9d06abc44fae3ce35e47e9865ba243b75298";
+ rev = "79c81f53d5ff4c29c932e3b01e288bda211a08fa";
};
};
xkb.layout = "us";
@@ -94,13 +94,13 @@
(st.overrideAttrs {
src = fetchGit {
url = "https://github.com/ozpv/st.git";
- rev = "a74788fe9617d8b995b61ba9d194a7c12cdd119b";
+ rev = "b1281f13579b710c443f0127f5ca49da36fe26b2";
};
})
(dmenu.overrideAttrs {
src = fetchGit {
url = "https://github.com/ozpv/dmenu.git";
- rev = "29255fd85845d66ce625b050ae9ab2751e382b73";
+ rev = "d22280f3dc99dd71b5c86c1a6ce584bdee7cd8eb";
};
})
(slstatus.overrideAttrs {
@@ -121,6 +121,7 @@
# neovim
programs.neovim.enable = true;
+ environment.variables.EDITOR = "nvim";
# gtk
programs.dconf.enable = true;
diff --git a/home.nix b/home.nix
index c2b730a..4317376 100644
--- a/home.nix
+++ b/home.nix
@@ -31,7 +31,9 @@
programs.home-manager.enable = true;
programs.neovim = {
- extraLuaConfig = '''';
+ viAlias = true;
+ vimAlias = true;
+ extraConfig = builtins.readFile ./etc/nixos/nvim/init.lua;
};
programs.zsh = {