diff options
Diffstat (limited to 'hosts/tomato/packages.nix')
-rw-r--r-- | hosts/tomato/packages.nix | 40 |
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 + ]; +} |