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
|
||||
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
|
||||
|
||||
@ -13,11 +13,11 @@
|
||||
};
|
||||
|
||||
# Flatpak
|
||||
services = {
|
||||
flatpak = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
#services = {
|
||||
# flatpak = {
|
||||
# enable = true;
|
||||
# };
|
||||
#};
|
||||
|
||||
# Todo -> Display server for all nixos machines (lightdm or smth else)
|
||||
|
||||
|
||||
@ -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
|
||||
];
|
||||
}
|
||||
|
||||
@ -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
|
||||
|
||||
@ -15,5 +15,6 @@
|
||||
"fs.file-max" = 524288;
|
||||
};
|
||||
};
|
||||
};
|
||||
}; #End of "boot"
|
||||
# EOF
|
||||
}
|
||||
|
||||
@ -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
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user