about summary refs log tree commit diff
path: root/configuration.nix
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2024-01-08 18:25:30 +0000
committerMel <einebeere@gmail.com>2024-01-08 18:25:30 +0000
commit4e29b3423a1c56ba665c66124994178aae58d0d1 (patch)
treed59904d540de4864977048911e4b929e43b5eae1 /configuration.nix
parent97f123c6b86671f3bd158d57849af529c24b3edb (diff)
downloadrnrd-4e29b3423a1c56ba665c66124994178aae58d0d1.tar.zst
rnrd-4e29b3423a1c56ba665c66124994178aae58d0d1.zip
Add custom .vimrc
Diffstat (limited to 'configuration.nix')
-rw-r--r--configuration.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/configuration.nix b/configuration.nix
index 5378d07..81df308 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -79,6 +79,12 @@ in
   };
 
   programs = {
+    vim = {
+      defaultEditor = true;
+      package = pkgs.vim-full.customize {
+        vimrcFile = ./configs/.vimrc;
+      };
+    };
     fish.enable = true;
     git.enable = true;
     tmux.enable = true;
@@ -89,10 +95,11 @@ in
     "${me.name}.rnrd.eu" = { root = "/var/www/html"; };
   };
 
-  environment.variables = { EDITOR = "vim"; };
+
   environment.systemPackages = with pkgs; [
-    file unzip jq dig htop wget inetutils vim tcpdump
+    file unzip jq dig htop wget inetutils tcpdump
     ripgrep gnumake gdb
+    glances
   ]; 
 }