Add vim and tree

This commit is contained in:
Oliver Davies 2025-04-29 14:55:08 +01:00
parent dd16cbda7b
commit 84dc5ff4e7

View file

@ -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
];
}