From 8ea69c6f23f25e21f4cd12618d8c956e48e09996 Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Sun, 20 Oct 2024 00:16:49 -0500 Subject: [PATCH] Install additional applications --- oscar/configuration.nix | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/oscar/configuration.nix b/oscar/configuration.nix index 4c0b77b..1d3776f 100644 --- a/oscar/configuration.nix +++ b/oscar/configuration.nix @@ -121,11 +121,35 @@ users.users.chandler.extraGroups = [ "networkmanager" "wheel" "dialout" "cdrom" ]; home-manager.users.chandler = { pkgs, ... }: { home.packages = with pkgs; [ + # applications + blender + freecad + frescobaldi + gimp + josm kate - prismlauncher + kicad libreoffice-qt + prismlauncher + qgis + thunderbird - # thunderbird + # command line applications + beets + iperf + units + + # command line utilities + dig + file + killall + pv + wl-clipboard + + # a few basic compilers + clang + go + rustc ]; programs.bash.enable = true;