From 3bf74bdc3ae422394b6fdf81d92f2bff156a84e9 Mon Sep 17 00:00:00 2001 From: Geir Okkenhaug Jerstad Date: Tue, 21 May 2024 13:33:10 +0200 Subject: [PATCH] added some tools to the server --- fileserver/configuration.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/fileserver/configuration.nix b/fileserver/configuration.nix index 55c5f3e..3fe474b 100644 --- a/fileserver/configuration.nix +++ b/fileserver/configuration.nix @@ -61,16 +61,18 @@ users.users.geir= { isNormalUser = true; - extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. + extraGroups = [ "wheel" ]; packages = with pkgs; [ - tree fastfetch kitty + tree kitty htop glances + mc starship zsh ]; }; # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ - emacs zfs htop bottom fastfetch tmux + emacs nvim zellij + zfs htop bottom fastfetch tmux wget curl git ];