diff options
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 ]; } |
