Compare commits
3 commits
d827c204b5
...
3216e68456
Author | SHA1 | Date | |
---|---|---|---|
3216e68456 | |||
3e38a77ece | |||
faa650c4a5 |
7 changed files with 70 additions and 20 deletions
|
@ -20,3 +20,9 @@
|
||||||
# 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%
|
# 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%
|
||||||
|
|
||||||
# CAP_SYS_NICE=eip gamescope --expose-wayland --backend sdl --framerate-limit 144 --output-height 1440 --output-width 2560 --rt -F fsr -f --sharpness 4 -- gamemoderun %command%
|
# CAP_SYS_NICE=eip gamescope --expose-wayland --backend sdl --framerate-limit 144 --output-height 1440 --output-width 2560 --rt -F fsr -f --sharpness 4 -- gamemoderun %command%
|
||||||
|
|
||||||
|
# gamescope --expose-wayland --backend sdl --framerate-limit 144 --output-height 1440 --output-width 2560 --prefer-vk-device 7480:CF --prefer-output DP-2 --fullscreen --rt -F fsr --sharpness 4 -- gamemoderun %command%
|
||||||
|
|
||||||
|
# CAP_SYS_NICE=eip gamescope --expose-wayland --backend sdl --framerate-limit 160 --output-height 1440 --output-width 2560 --prefer-vk-device 73A5:C0 --prefer-output DP-2 --fullscreen --force-windows-fullscreen --rt -F fsr --sharpness 4 -- gamemoderun %command%
|
||||||
|
|
||||||
|
# SDL_VIDEODRIVER=x11 CAP_SYS_NICE=eip gamescope --expose-wayland --backend sdl --framerate-limit 160 --output-height 1440 --output-width 2560 --force-windows-fullscreen -f --prefer-vk-device 73A5:C0 --prefer-output DP-2 -- gamemoderun %command% --use-d3d11
|
|
@ -105,6 +105,24 @@ in
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
|
## NIX NIX NIX ##
|
||||||
|
home.file =
|
||||||
|
let
|
||||||
|
nixConfig = pkgs.writeText "config.nix" ''
|
||||||
|
{
|
||||||
|
allowUnfree = true;
|
||||||
|
permittedInsecurePackages = [
|
||||||
|
"ventoy-gtk3-1.1.05"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
in
|
||||||
|
{
|
||||||
|
".config/nixpkgs/config.nix" = {
|
||||||
|
source = nixConfig;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Nicely reload system units when changing configs
|
# Nicely reload system units when changing configs
|
||||||
systemd.user.startServices = "sd-switch";
|
systemd.user.startServices = "sd-switch";
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,11 +27,23 @@
|
||||||
home.packages = builtins.attrValues {
|
home.packages = builtins.attrValues {
|
||||||
inherit (pkgs)
|
inherit (pkgs)
|
||||||
## Media ##
|
## Media ##
|
||||||
cider # Apple Music
|
ffmpeg
|
||||||
|
gpu-screen-recorder-gtk
|
||||||
|
spotify
|
||||||
youtube-music
|
youtube-music
|
||||||
|
|
||||||
|
## Social ##
|
||||||
|
betterdiscordctl
|
||||||
|
discord
|
||||||
|
telegram-desktop
|
||||||
|
|
||||||
## Tools ##
|
## Tools ##
|
||||||
|
bitwarden-desktop
|
||||||
inspector
|
inspector
|
||||||
|
|
||||||
|
## Productivity ##
|
||||||
|
gimp
|
||||||
|
inkscape
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<primary>yes</primary>
|
<primary>yes</primary>
|
||||||
<monitor>
|
<monitor>
|
||||||
<monitorspec>
|
<monitorspec>
|
||||||
<connector>DP-3</connector>
|
<connector>DP-2</connector>
|
||||||
<vendor>GBT</vendor>
|
<vendor>GBT</vendor>
|
||||||
<product>M27Q</product>
|
<product>M27Q</product>
|
||||||
<serial>21030B006741</serial>
|
<serial>21030B006741</serial>
|
||||||
|
@ -16,10 +16,9 @@
|
||||||
<mode>
|
<mode>
|
||||||
<width>2560</width>
|
<width>2560</width>
|
||||||
<height>1440</height>
|
<height>1440</height>
|
||||||
<rate>143.856</rate>
|
<rate>169.831</rate>
|
||||||
</mode>
|
</mode>
|
||||||
<colormode>bt2100</colormode>
|
|
||||||
</monitor>
|
</monitor>
|
||||||
</logicalmonitor>
|
</logicalmonitor>
|
||||||
</configuration>
|
</configuration>
|
||||||
</monitors>
|
</monitors>
|
|
@ -22,10 +22,22 @@
|
||||||
home.packages = builtins.attrValues {
|
home.packages = builtins.attrValues {
|
||||||
inherit (pkgs)
|
inherit (pkgs)
|
||||||
## Media ##
|
## Media ##
|
||||||
cider # Apple Music
|
ffmpeg
|
||||||
|
spotify
|
||||||
|
gpu-screen-recorder-gtk
|
||||||
|
|
||||||
|
## Social ##
|
||||||
|
telegram-desktop
|
||||||
|
discord
|
||||||
|
betterdiscordctl
|
||||||
|
|
||||||
## Tools ##
|
## Tools ##
|
||||||
|
bitwarden-desktop
|
||||||
inspector
|
inspector
|
||||||
|
|
||||||
|
## Productivity ##
|
||||||
|
gimp
|
||||||
|
inkscape
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,6 +48,7 @@ in
|
||||||
];
|
];
|
||||||
config = {
|
config = {
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
|
allowUnfreePredicate = _: true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
modulesPath,
|
modulesPath,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = lib.flatten [
|
imports = lib.flatten [
|
||||||
(modulesPath + "/installer/scan/not-detected.nix")
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
|
@ -28,8 +27,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# Use the cachyos kernel for better performance
|
# Use the cachyos kernel for better performance
|
||||||
# kernelPackages = pkgs.linuxPackages_cachyos;
|
kernelPackages = pkgs.linuxPackages_cachyos;
|
||||||
kernelPackages = pkgs.linuxPackages_latest;
|
|
||||||
|
|
||||||
initrd = {
|
initrd = {
|
||||||
systemd.enable = true;
|
systemd.enable = true;
|
||||||
|
@ -50,20 +48,24 @@
|
||||||
];
|
];
|
||||||
extraModulePackages = [ ];
|
extraModulePackages = [ ];
|
||||||
};
|
};
|
||||||
fileSystems."/" =
|
|
||||||
{ device = "/dev/disk/by-uuid/5615474c-c665-407e-8f60-c221414ae343";
|
|
||||||
fsType = "ext4";
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/" = {
|
||||||
{ device = "/dev/disk/by-uuid/C9F2-4C1F";
|
device = "/dev/disk/by-uuid/5615474c-c665-407e-8f60-c221414ae343";
|
||||||
fsType = "vfat";
|
fsType = "ext4";
|
||||||
options = [ "fmask=0077" "dmask=0077" ];
|
};
|
||||||
};
|
|
||||||
|
|
||||||
swapDevices =
|
fileSystems."/boot" = {
|
||||||
[ { device = "/dev/disk/by-uuid/10529583-bde9-4aad-8001-f5954c4a1474"; }
|
device = "/dev/disk/by-uuid/C9F2-4C1F";
|
||||||
|
fsType = "vfat";
|
||||||
|
options = [
|
||||||
|
"fmask=0077"
|
||||||
|
"dmask=0077"
|
||||||
];
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
swapDevices = [
|
||||||
|
{ device = "/dev/disk/by-uuid/10529583-bde9-4aad-8001-f5954c4a1474"; }
|
||||||
|
];
|
||||||
|
|
||||||
time.hardwareClockInLocalTime = true; # Fixes windows dual-boot time issues
|
time.hardwareClockInLocalTime = true; # Fixes windows dual-boot time issues
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue