summaryrefslogtreecommitdiff
path: root/hosts/tomato/packages.nix
diff options
context:
space:
mode:
authorSimon Parri <simonparri@ganzeria.com>2025-06-03 15:25:18 -0500
committerSimon Parri <simonparri@ganzeria.com>2025-06-03 15:25:18 -0500
commitb6bcc6af673b2bb3ce40e04349be200cd354eece (patch)
treea3f816dccb3750570ff30fa53a9a1ffeee5c2a5a /hosts/tomato/packages.nix
parent68e4c11e036856583cbe02fd839eefedb9f8a23e (diff)
downloadnixos-config-b6bcc6af673b2bb3ce40e04349be200cd354eece.tar.gz
nixos-config-b6bcc6af673b2bb3ce40e04349be200cd354eece.zip
hosts/tomato: Add initial configuration
Diffstat (limited to 'hosts/tomato/packages.nix')
-rw-r--r--hosts/tomato/packages.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/hosts/tomato/packages.nix b/hosts/tomato/packages.nix
new file mode 100644
index 0000000..b4c4ba4
--- /dev/null
+++ b/hosts/tomato/packages.nix
@@ -0,0 +1,40 @@
+{ pkgs, ... }:
+
+{
+ this.sets = {
+ arch.tools = true;
+ cli.tools.full = true;
+ cli.shell = true;
+ comm.im = true;
+ de.utils = true;
+ gui.tools.full = true;
+ gui.theme = true;
+ gui.fonts = true;
+ image.utils = true;
+ image.tools = true;
+ manga.dl = true;
+ media.tools = true;
+ net.tools.full = true;
+ script.utils = true;
+ sound.tools = true;
+ sys.tools = true;
+ writing.tools = true;
+ www.browser = true;
+ };
+
+ environment.systemPackages = with pkgs; [
+ emacs
+ emacsPackages.pdf-tools
+ jre
+ ruby
+ sbcl
+ python3
+ rclone
+ nethack
+ sil-q
+ mu
+ emacsPackages.mu4e
+ isync
+ ppsspp
+ ];
+}