- Removes global development utilities file and shifts related tools to core - Updates gaming and vscode modules with refined commands and file renames - Wraps GNOME dconf settings in mkDefault/mkForce for consistency across users - Adds host-specific configurations (dconf, monitors, and VM settings) - Organizes user theme files by relocating global assets to user directories
20 lines
681 B
Nix
20 lines
681 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
imports = lib.custom.scanPaths ./.;
|
|
|
|
home.packages = with pkgs; [
|
|
prismlauncher
|
|
# modrinth-app
|
|
];
|
|
}
|
|
|
|
# INFO: Example working commands for running gamescope
|
|
|
|
# gamescope --adaptive-sync --backend sdl --expose-wayland --force-grab-cursor --framerate-limit 120 --immediate-flips --output-height 2160 --output-width 3840 --prefer-output DP-3 --rt -- gamemoderun %command%
|
|
|
|
# AMD_VULKAN_ICD=RADV RADV_PERFTEST=aco PROTON_USE_D9VK=1 CAP_SYS_NICE=eip gamescope --expose-wayland --backend sdl --framerate-limit 120 --output-height 2160 --output-width 3840 --prefer-vk-device 7550:C0 --rt -F fsr -f --sharpness 4 -- gamemoderun %command%
|