Added Jellyfin Desktop, modified the hyprshot output dir, modified some VR settings

This commit is contained in:
Alexandre 2026-02-16 17:40:38 +01:00
parent 560346f31a
commit 5b9bc6853c
6 changed files with 27 additions and 10 deletions

View File

@ -50,6 +50,7 @@ in
obsidian obsidian
beeper beeper
bitwarden-desktop bitwarden-desktop
jellyfin-desktop
kitty # Terminal emulator but needs a GUI kitty # Terminal emulator but needs a GUI
# Go # Go
@ -63,7 +64,6 @@ in
# C/C++ # C/C++
clang-tools # The main compiler clang-tools # The main compiler
cmake
vcpkg # The package manager vcpkg # The package manager
# Python # Python

View File

@ -13,11 +13,11 @@
}; };
# Flatpak # Flatpak
services = { #services = {
flatpak = { # flatpak = {
enable = true; # enable = true;
}; # };
}; #};
# Todo -> Display server for all nixos machines (lightdm or smth else) # Todo -> Display server for all nixos machines (lightdm or smth else)

View File

@ -11,7 +11,7 @@ in
modules.nixos.gaming.amd modules.nixos.gaming.amd
modules.nixos.gaming.starCitizen modules.nixos.gaming.starCitizen
modules.nixos.gaming.steam modules.nixos.gaming.steam
#modules.nixos.gaming.vr modules.nixos.gaming.vr
modules.common.spotify modules.common.spotify
]; ];
} }

View File

@ -26,7 +26,7 @@ in
"$launcher2" = "hyprlauncher"; "$launcher2" = "hyprlauncher";
"fileManager" = "dolphin"; "fileManager" = "dolphin";
"$browser" = "zen"; "$browser" = "zen";
"$screenShot" = "hyprshot -m region"; "$screenShot" = "hyprshot -m region -o ~/Pictures/Screenshots";
# Todo : Add a notification daemon # Todo : Add a notification daemon
exec-once = [ exec-once = [
@ -41,6 +41,9 @@ in
numlock_by_default = true; numlock_by_default = true;
accel_profile = "flat"; accel_profile = "flat";
follow_mouse = "1"; follow_mouse = "1";
touchpad = {
disable_while_typing = false;
};
}; };
# Monitor config # Monitor config

View File

@ -15,5 +15,6 @@
"fs.file-max" = 524288; "fs.file-max" = 524288;
}; };
}; };
}; }; #End of "boot"
# EOF
} }

View File

@ -1,7 +1,20 @@
{pkgs, ...}: {pkgs, ...}:
{ {
environment.systemPackages = with pkgs; [ alvr ]; environment.systemPackages = with pkgs; [ wivrn ];
services.avahi = {
enable = true;
publish = {
enable = true;
userServices = true;
};
};
networking.firewall = {
allowedTCPPorts = [ 9757 ];
allowedUDPPorts = [ 9757 ];
};
# EOF # EOF
} }