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

View File

@ -13,11 +13,11 @@
};
# Flatpak
services = {
flatpak = {
enable = true;
};
};
#services = {
# flatpak = {
# enable = true;
# };
#};
# 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.starCitizen
modules.nixos.gaming.steam
#modules.nixos.gaming.vr
modules.nixos.gaming.vr
modules.common.spotify
];
}

View File

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

View File

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

View File

@ -1,7 +1,20 @@
{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
}