From 84dc5ff4e70fd8dc0b343ef00d883aed94b5f2bf Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 29 Apr 2025 14:55:08 +0100 Subject: [PATCH] Add vim and tree --- hosts/nixedo/configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hosts/nixedo/configuration.nix b/hosts/nixedo/configuration.nix index ebcbb655..0ac6886e 100644 --- a/hosts/nixedo/configuration.nix +++ b/hosts/nixedo/configuration.nix @@ -2,6 +2,8 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). +{ pkgs, ... }: + { imports = [ ../common @@ -43,4 +45,9 @@ 80 443 ]; + + environment.systemPackages = with pkgs; [ + tree + vim + ]; }