mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
Added Jellyfin Desktop, modified the hyprshot output dir, modified some VR settings
This commit is contained in:
parent
560346f31a
commit
5b9bc6853c
@ -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
|
||||||
|
|||||||
@ -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)
|
||||||
|
|
||||||
|
|||||||
@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -15,5 +15,6 @@
|
|||||||
"fs.file-max" = 524288;
|
"fs.file-max" = 524288;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
}; #End of "boot"
|
||||||
|
# EOF
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user