diff options
| author | Mel <einebeere@gmail.com> | 2024-01-08 18:25:30 +0000 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2024-01-08 18:25:30 +0000 |
| commit | 4e29b3423a1c56ba665c66124994178aae58d0d1 (patch) | |
| tree | d59904d540de4864977048911e4b929e43b5eae1 /configuration.nix | |
| parent | 97f123c6b86671f3bd158d57849af529c24b3edb (diff) | |
| download | rnrd-4e29b3423a1c56ba665c66124994178aae58d0d1.tar.zst rnrd-4e29b3423a1c56ba665c66124994178aae58d0d1.zip | |
Add custom .vimrc
Diffstat (limited to 'configuration.nix')
| -rw-r--r-- | configuration.nix | 11 |
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 ]; } |
