]> Skullheadx's Git Forge - nixos.git/commitdiff
fix neovim by removing stylix target
authorAndrew <admonty1@protonmail.com>
Sat, 8 Nov 2025 21:39:09 +0000 (16:39 -0500)
committerAndrew <admonty1@protonmail.com>
Sat, 8 Nov 2025 21:39:09 +0000 (16:39 -0500)
TODO.md
astronvim-config [deleted submodule]
configuration.nix
neovim.nix
stylix.nix

diff --git a/TODO.md b/TODO.md
index 24d0168585e5dd053bf71a99bc1b5ea67c46cc1e..497a8382dcdff8ab01f46f0f81d8bee4811d4759 100644 (file)
--- a/TODO.md
+++ b/TODO.md
@@ -4,7 +4,14 @@
 
 - [ ] fix workspace 4 icon
 - [ ] fix startup tmux session
-
+### waybar
+- [ ] fix the bar to run properly and display time accurately
+### rofi wayland
+- [ ] fix this crap to be better
 ## Fish
 
 - [ ] keybind to accept autocomplete other than right arrow
+
+
+## Neovim
+- [ ] combine tmux and neovim status bar
diff --git a/astronvim-config b/astronvim-config
deleted file mode 160000 (submodule)
index 3d60141..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 3d60141a648aabfd15504a09d408784d3abae96e
index 7f6debff668754a6b82e1ea40fcd16e0e12a28b9..9e5011952ed9bc681e14693c82861e799b7d2b09 100644 (file)
@@ -81,6 +81,8 @@
     libnotify
     bibata-cursors
     libsecret
+    gdu
+    unzip
   ];
   programs.steam = {
     enable = true;
index de61b98e2e1f2a2246cd8de13708932a5a2826ba..6bab47aaa0bbff6b04c255758a08b60ae5558a21 100644 (file)
@@ -4,17 +4,24 @@
   pkgs,
   inputs,
   ...
-}: let
-dotfiles.mutable = true;
-dotfiles.path = "${config.home.homeDirectory}/.dotfiles";
-  filePath = "${config.dotfiles.path}/astronvim-config";
-  configSrc =
-    config.lib.file.mkOutOfStoreSymlink filePath;
-in {
-  xdg.configFile."nvim".source = ./astronvim-config;
+}: {
+       home.file.".config/nvim".source = config.lib.file.mkOutOfStoreSymlink "/home/andrew/.dotfiles/astronvim-config";
+  programs.ripgrep.enable = true;
+  programs.lazygit.enable = true;
+  programs.bottom.enable = true;
+
+  # home.persistence."/persist${config.home.homeDirectory}" = {
+  #   directories = [
+  #     ".local/share/nvim"
+  #     ".local/state/nvim"
+  #     ".cache/nvim"
+  #   ];
+  # };
 
        programs.neovim = {
                enable = true;
+               withPython3 = true;
+               withNodeJs = true;
                defaultEditor = true;
        };
 }
index 48f0cd9c2dcac6ef9c605279bff2928d28891225..b5c5222d6ffad39589d904d75d93b1d994dec0fb 100644 (file)
@@ -35,7 +35,7 @@
       qt.enable = true;
 
       vim.enable = true;
-      neovim.enable = true;
+      neovim.enable = false;
 
       kitty.enable = true; # Kitty terminal
       ghostty.enable = true;