aboutsummaryrefslogtreecommitdiff
path: root/apps.nix
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2025-07-03 12:23:02 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2025-07-03 12:23:02 +0530
commit4aca2038465009f23cf897c8949b39f0a241c200 (patch)
tree59ec372304130b2c389411a74c067ebbfc593a2a /apps.nix
parentff0b4b72f64ae716c8d28d3b94dc8789d14115e3 (diff)
modulaized
Diffstat (limited to 'apps.nix')
-rw-r--r--apps.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/apps.nix b/apps.nix
new file mode 100644
index 0000000..35a6bcc
--- /dev/null
+++ b/apps.nix
@@ -0,0 +1,16 @@
+{ config, pkgs, ... }:
+{
+ # $ nix search wget
+ environment.systemPackages = with pkgs; [
+ vscode
+ discord
+ localsend
+ bitwarden
+ jetbrains.pycharm-professional
+ jetbrains.clion
+ ];
+
+ # for Localsend
+ networking.firewall.allowedTCPPorts = [ 53317 ];
+ networking.firewall.allowedUDPPorts = [ 53317 ];
+}