modified: hosts/blackstar/nixos/configuration.nix

modified:   hosts/shared/nixos/shared_config.nix
	modified:   modules/desktop/chat.nix
	modified:   modules/desktop/games.nix
	modified:   modules/system/audio.nix
This commit is contained in:
Mrrp 2024-09-16 18:18:25 -07:00
parent bc4199cb93
commit 0385f5f40a
5 changed files with 19 additions and 3 deletions

View file

@ -29,6 +29,8 @@
../../../modules ../../../modules
]; ];
boot.supportedFilesystems = [ "ntfs" ];
modules = { modules = {
desktop = { desktop = {
chat.enable = true; chat.enable = true;
@ -110,7 +112,7 @@
variant = ""; variant = "";
layout = "us"; layout = "us";
}; };
}; };z
# Enable the KDE Plasma Desktop Environment. # Enable the KDE Plasma Desktop Environment.
services.displayManager.sddm.enable = true; services.displayManager.sddm.enable = true;

View file

@ -13,6 +13,7 @@
bottles bottles
onlyoffice-bin onlyoffice-bin
google-chrome google-chrome
microsoft-edge
/* ---------------------------- System Utilities ---------------------------- */ /* ---------------------------- System Utilities ---------------------------- */
gnupg ffmpeg unzip gnupg ffmpeg unzip

View file

@ -13,7 +13,7 @@ in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
discord vesktop
element-desktop element-desktop
]; ];
}; };

View file

@ -16,5 +16,18 @@ in {
programs.alvr.enable = true; programs.alvr.enable = true;
programs.alvr.openFirewall = true; programs.alvr.openFirewall = true;
networking.firewall = {
allowedTCPPorts = [
# Steam Remote Play
27036 27037
];
allowedUDPPorts = [
# Steam Remote Play
27031 26036
# Steam VR Streaing
10400 10401
];
};
}; };
} }

View file

@ -9,7 +9,7 @@ in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
# Enable sound with pipewire. # Enable sound with pipewire.
hardware.pulseaudio.enable = false; # hardware.pulseaudio.enable = false;
security.rtkit.enable = true; security.rtkit.enable = true;
services.pipewire = { services.pipewire = {
enable = true; enable = true;