summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew <admonty1@protonmail.com>2025-11-08 22:11:57 -0500
committerAndrew <admonty1@protonmail.com>2025-11-08 22:11:57 -0500
commit4f0d04181643ab79a62d9b9a24b0b818ed59933a (patch)
tree5b6926664bbcb217fe8e3f4eb2fad6389c55471b
parentfix neovim by removing stylix target (diff)
downloadnixos-4f0d04181643ab79a62d9b9a24b0b818ed59933a.tar.gz
nixos-4f0d04181643ab79a62d9b9a24b0b818ed59933a.tar.bz2
nixos-4f0d04181643ab79a62d9b9a24b0b818ed59933a.zip
fix neovim
Diffstat (limited to '')
-rw-r--r--configuration.nix5
-rw-r--r--neovim.nix20
2 files changed, 17 insertions, 8 deletions
diff --git a/configuration.nix b/configuration.nix
index 9e50119..5c9e725 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -83,6 +83,11 @@
libsecret
gdu
unzip
+ nixd
+ deadnix
+ statix
+ python314
+ zig
];
programs.steam = {
enable = true;
diff --git a/neovim.nix b/neovim.nix
index 6bab47a..ffe4f1a 100644
--- a/neovim.nix
+++ b/neovim.nix
@@ -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 = [
@@ -18,10 +22,10 @@
# ];
# };
- programs.neovim = {
- enable = true;
- withPython3 = true;
- withNodeJs = true;
- defaultEditor = true;
- };
+ programs.neovim = {
+ enable = true;
+ withPython3 = true;
+ withNodeJs = true;
+ defaultEditor = true;
+ };
}