aboutsummaryrefslogtreecommitdiff
path: root/apps.nix
diff options
context:
space:
mode:
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 ];
+}