]> Skullheadx's Git Forge - nixos.git/commitdiff
fix neovim
authorAndrew <admonty1@protonmail.com>
Sun, 9 Nov 2025 03:11:57 +0000 (22:11 -0500)
committerAndrew <admonty1@protonmail.com>
Sun, 9 Nov 2025 03:11:57 +0000 (22:11 -0500)
configuration.nix
neovim.nix

index 9e5011952ed9bc681e14693c82861e799b7d2b09..5c9e72532e0fa87fed6ba00f118f60323b18df52 100644 (file)
     libsecret
     gdu
     unzip
+    nixd
+    deadnix
+    statix
+    python314
+    zig
   ];
   programs.steam = {
     enable = true;
index 6bab47aaa0bbff6b04c255758a08b60ae5558a21..ffe4f1ab30f615dc61d8579a5d07c3991a8d668c 100644 (file)
@@ -4,11 +4,15 @@
   pkgs,
   inputs,
   ...
-}: {
-       home.file.".config/nvim".source = config.lib.file.mkOutOfStoreSymlink "/home/andrew/.dotfiles/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;
+  programs.go.enable = true;
+  programs.gcc.enable = true;
 
   # home.persistence."/persist${config.home.homeDirectory}" = {
   #   directories = [
   #   ];
   # };
 
-       programs.neovim = {
-               enable = true;
-               withPython3 = true;
-               withNodeJs = true;
-               defaultEditor = true;
-       };
+  programs.neovim = {
+    enable = true;
+    withPython3 = true;
+    withNodeJs = true;
+    defaultEditor = true;
+  };
 }