summaryrefslogtreecommitdiff
path: root/hosts/thyme/packages.nix
diff options
context:
space:
mode:
authorSimon Parri <simonparri@ganzeria.com>2025-05-09 17:54:45 -0500
committerSimon Parri <simonparri@ganzeria.com>2025-05-09 17:54:45 -0500
commit4ea08b3976188eb01a74548d68b227a7794b4caa (patch)
tree505c0df98ed00ed592be15895b8ed3eb7aa9e2c3 /hosts/thyme/packages.nix
downloadnixos-config-4ea08b3976188eb01a74548d68b227a7794b4caa.tar.gz
nixos-config-4ea08b3976188eb01a74548d68b227a7794b4caa.zip
Add current configuration
Diffstat (limited to 'hosts/thyme/packages.nix')
-rw-r--r--hosts/thyme/packages.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/hosts/thyme/packages.nix b/hosts/thyme/packages.nix
new file mode 100644
index 0000000..13fc13e
--- /dev/null
+++ b/hosts/thyme/packages.nix
@@ -0,0 +1,51 @@
+{ pkgs, ... }:
+
+{
+ this.sets = {
+ arch.tools = true;
+ cli.tools.full = true;
+ cli.shell = true;
+ comm.im = true;
+ de.utils = true;
+ gui.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;
+ };
+
+ environment.systemPackages = with pkgs; [
+ emacs
+ emacsPackages.pdf-tools
+ jre
+ ruby
+ sbcl
+ python3
+ rclone
+ keymapper
+ nethack
+ sil-q
+ notmuch
+ emacsPackages.notmuch
+ mu
+ emacsPackages.mu4e
+ isync
+ ppsspp
+ wesnoth
+ ];
+
+ programs.firefox = {
+ enable = true;
+ package = pkgs.firefox-esr;
+ nativeMessagingHosts.packages = with pkgs; [
+ passff-host
+ ];
+ };
+}