blob: 67e76ecadce9339c50d966d035297e6b662b2e06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
{ config, pkgs, unstable, ... }:
{
imports =
[
./apps/browser.nix
];
environment.systemPackages = with pkgs; [
google-chrome
librewolf
blanket
gimp
localsend
libresprite
parted
obsidian
calibre
libreoffice-qt6-fresh
kdePackages.dolphin
tigervnc
winePackages.stableFull
winetricks
vlc
];
programs.obs-studio = {
enable = true;
package = (
pkgs.obs-studio.override {
cudaSupport = true;
}
);
plugins = with pkgs.obs-studio-plugins; [
wlrobs
obs-backgroundremoval
obs-pipewire-audio-capture
obs-gstreamer
obs-vkcapture
];
};
programs.thunderbird.enable = true;
xdg.mime = let
value = "librewolf.desktop";
associations = {
} // builtins.listToAttrs (map (name: {
inherit name value;
}) [
"application/x-extension-shtml"
"application/x-extension-xhtml"
"application/x-extension-html"
"application/x-extension-xht"
"application/x-extension-htm"
"x-scheme-handler/unknown"
"x-scheme-handler/mailto"
"x-scheme-handler/chrome"
"x-scheme-handler/about"
"x-scheme-handler/https"
"x-scheme-handler/http"
"application/xhtml+xml"
"application/json"
"text/plain"
"text/html"
]);
in {
defaultApplications = associations;
};
networking.firewall.allowedTCPPorts = [ 53317 41567 5173 22 9600 ];
networking.firewall.allowedUDPPorts = [ 53317 41567 5173 22 9600 ];
}
|