aboutsummaryrefslogtreecommitdiff
path: root/nixos/apps.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/apps.nix')
-rw-r--r--nixos/apps.nix14
1 files changed, 4 insertions, 10 deletions
diff --git a/nixos/apps.nix b/nixos/apps.nix
index f23edb8..17fc4a7 100644
--- a/nixos/apps.nix
+++ b/nixos/apps.nix
@@ -1,6 +1,9 @@
{ config, pkgs, ... }:
{
- # $ nix search wget
+ imports =
+ [
+ ./apps/browser.nix
+ ];
environment.systemPackages = with pkgs; [
gimp
vscode
@@ -16,15 +19,6 @@
vlc
];
- xdg = {
- mime.enable = true;
- mime.defaultApplications = {
- # don't use libreoffice draw for pdfs, use firefox
- "application/pdf" = [ "firefox.desktop" ];
- };
- };
-
- # for Localsend
networking.firewall.allowedTCPPorts = [ 53317 8081 ];
networking.firewall.allowedUDPPorts = [ 53317 8081 ];
}