blob: 8b40c680f5385df5ddbd58e2e98f95691ba6c4c3 (
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
|
{ config, pkgs, unstable, ... }:
{
imports =
[
./apps/browser.nix
];
environment.systemPackages = with pkgs; [
google-chrome
blanket
gimp
localsend
libresprite
parted
obsidian
calibre
libreoffice-qt6-fresh
kdePackages.dolphin
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;
networking.firewall.allowedTCPPorts = [ 53317 41567 5173 ];
networking.firewall.allowedUDPPorts = [ 53317 41567 5173 ];
}
|