diff --git a/hosts/leon/default.nix b/hosts/leon/default.nix index f083dc5c..bfc031bc 100644 --- a/hosts/leon/default.nix +++ b/hosts/leon/default.nix @@ -24,6 +24,13 @@ in wheelNeedsPassword = false; }; +# List packages installed in system profile. To search, run: + # $ nix search wget + environment.systemPackages = with pkgs; [ + wget vim python3Full nmap + ]; + + users.users.leon = { isNormalUser = true; extraGroups = [ "wheel" ];