ljasdljasdjkl

This commit is contained in:
Peder Bergebakken Sundt 2024-03-13 23:35:32 +01:00
parent 4b363a7cb1
commit f453a8f40f
5 changed files with 20 additions and 12 deletions

View File

@ -44,7 +44,7 @@
networking.firewall.allowedTCPPorts = [ 57621 ]; # spotify local discovery networking.firewall.allowedTCPPorts = [ 57621 ]; # spotify local discovery
networking.wireguard.interfaces."wg0".ips = [ "172.22.48.4/24" ]; networking.wireguard.interfaces."wg0".ips = [ "172.22.48.4/24" ]; # fyrkat
# Networking # Networking

View File

@ -96,7 +96,7 @@
networking.hostId = "e1ffd469"; # needed for zfs: head -c 8 /etc/machine-id networking.hostId = "e1ffd469"; # needed for zfs: head -c 8 /etc/machine-id
networking.wireguard.interfaces."wg0".ips = [ "172.22.48.3/24" ]; networking.wireguard.interfaces."wg0".ips = [ "172.22.48.3/24" ]; # fyrkat
# TODO: remove? Move to where relevant? # TODO: remove? Move to where relevant?
nixpkgs.overlays = [ nixpkgs.overlays = [

View File

@ -14,7 +14,10 @@
#services.pipewire.media-session.enable = true; #services.pipewire.media-session.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
easyeffects pavucontrol # volume and defaults
easyeffects # eq
helvum # patchbay
carla # VST (TODO: move into a DAW profile?)
]; ];
security.rtkit.enable = true; # optional security.rtkit.enable = true; # optional

View File

@ -72,9 +72,14 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
steam-tui steam-tui
steamcmd steamcmd
protontricks #winetricks
#protontricks
jstest-gtk # nice to have wineWowPackages.full
#wineWowPackages.waylandFull
# nice to have
jstest-gtk
]; ];
} }

View File

@ -14,10 +14,9 @@
"spotify" "spotify"
]; ];
# TODO: doesn't work? nixpkgs.config.allowInsecurePredicate = pkg: builtins.elem (lib.getName pkg) [
nixpkgs.config.permittedInsecurePackages = [ "pulsar"
"pulsar-1.106.0" "zotero"
"zotero-6.0.26"
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
@ -38,9 +37,8 @@
discord discord
element-desktop element-desktop
#element-desktop-wayland #element-desktop-wayland
nheko #nheko
slack #fluffychat
telegram-desktop
(pkgs.zxtune or null) (pkgs.zxtune or null)
@ -54,6 +52,8 @@
transgui #transmission-remote-gtk transgui #transmission-remote-gtk
] ]
++ builtins.filter (drv: (builtins.tryEval drv.outPath).success) [ ++ builtins.filter (drv: (builtins.tryEval drv.outPath).success) [
slack
telegram-desktop
teams teams
zoom-us zoom-us
]; ];