From 76fa4874866313899dd85046912eb5048a7e4d5a Mon Sep 17 00:00:00 2001 From: Nico Date: Sat, 3 May 2025 16:16:00 +1000 Subject: [PATCH] nix: move thunderbird and ghostty into linux-specific folder thunderbird and ghostty aren't avaliable in nixpkgs for darwin yet. --- modules/applications.nix | 3 --- modules/linux/applications.nix | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/applications.nix b/modules/applications.nix index 4c483c8..bf9715f 100644 --- a/modules/applications.nix +++ b/modules/applications.nix @@ -2,13 +2,10 @@ { environment.systemPackages = with pkgs; [ - ghostty - gimp audacity obsidian element-desktop - thunderbird keepassxc ani-cli ]; diff --git a/modules/linux/applications.nix b/modules/linux/applications.nix index 6caf909..34da552 100644 --- a/modules/linux/applications.nix +++ b/modules/linux/applications.nix @@ -4,5 +4,7 @@ # nix pkgs environment.systemPackages = with pkgs; [ mpv + ghostty + thunderbird ] }