Re-enable AMD GPU
This commit is contained in:
parent
8b4dacfc2b
commit
ec24b532b9
11 changed files with 23 additions and 24 deletions
|
|
@ -2,6 +2,7 @@
|
|||
home.packages = with pkgs; [
|
||||
zx # Tool for writing better scripts
|
||||
trurl # Parsing and manipulating URLs via CLI
|
||||
dig # DNS
|
||||
onefetch # Git information tool
|
||||
tokei # Like cloc
|
||||
zeal # Offline documentation browser
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@
|
|||
(right)))
|
||||
|
||||
(defwindow spraggins
|
||||
:monitor 0
|
||||
:monitor 1
|
||||
:stacking "bg"
|
||||
:windowtype "normal"
|
||||
:wm-ignore true
|
||||
|
|
|
|||
|
|
@ -31,18 +31,18 @@ in {
|
|||
extraConfig = ''
|
||||
# See https://wiki.hyprland.org/Configuring/Monitors
|
||||
monitor=desc:Samsung Electric Company C49HG9x HTRJ901269, 3840x1080, 0x0, 1 # Left
|
||||
monitor=desc:Ancor Communications Inc ASUS VE278 C5LMTF047320, 1920x1080, 3840x-550, 1, transform, 1 # Right
|
||||
monitor=desc:Ancor Communications Inc ASUS VE278 C5LMTF047320, 1920x1080, 3840x-610, 1, transform, 1 # Right
|
||||
|
||||
# Any other random monitor
|
||||
monitor=,preferred,auto,1
|
||||
|
||||
# Gaps for eww
|
||||
monitor=DP-2,addreserved,40,0,0,0
|
||||
monitor=DP-3,addreserved,40,0,0,0
|
||||
# monitor=,addreserved,40,0,0,0
|
||||
|
||||
# Single tiled windows in a workspace on my main monitor
|
||||
# should be displayed with a padding on both sides
|
||||
workspace=w[t1] m[0],gapsout:15 840 15 840
|
||||
workspace=w[t1] m[1],gapsout:15 840 15 840
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
||||
|
||||
|
|
@ -67,8 +67,8 @@ in {
|
|||
env = HYPRCURSOR_SIZE,28
|
||||
# env = WLR_NO_HARDWARE_CURSORS,1
|
||||
env = NIXOS_OZONE_WL,1
|
||||
env = LIBVA_DRIVER_NAME,nvidia
|
||||
env = __GLX_VENDOR_LIBRARY_NAME,nvidia
|
||||
env = LIBVA_DRIVER_NAME,radeonsi
|
||||
env = __GLX_VENDOR_LIBRARY_NAME,radeonsi
|
||||
env = NVD_BACKEND,direct
|
||||
|
||||
debug {
|
||||
|
|
|
|||
|
|
@ -29,6 +29,8 @@
|
|||
vesktop # Discord Messenger
|
||||
obs-studio # OBS Studio
|
||||
wasistlos # WhatsApp client
|
||||
signal-desktop # Messaging
|
||||
zulip # Self-hosted slack alternative
|
||||
libreoffice # Productivity Suite (like Microsoft Office)
|
||||
onlyoffice-bin # libreoffice alternative
|
||||
cider # Apple Music player
|
||||
|
|
|
|||
|
|
@ -4,10 +4,16 @@
|
|||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
tofi
|
||||
fuzzel
|
||||
];
|
||||
|
||||
programs.tofi = {
|
||||
enable = true;
|
||||
settings = {
|
||||
font = "JetBrains Mono";
|
||||
};
|
||||
};
|
||||
|
||||
# Clear the tofi cache after each activation so that newly installed packages
|
||||
# are immediately available using tofi-drun.
|
||||
home.activation.cleanTofiCache = lib.hm.dag.entryAfter ["writeBoundary"] ''
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ in
|
|||
npx themer -t wallpaper-circuits -o "$WALLPAPER_ROOT" --color-set "$THEME_JSON_PATH" -s 3840x1080 -s 1080x1920
|
||||
find "$WALLPAPER_DIR" -type f -iname '*.svg' | sed 'p;s/\.svg/\.png/' | sed 's/.*/"&"/' | xargs -n2 magick
|
||||
|
||||
hyprctl hyprpaper reload DP-2,"$WALLPAPER_FILE-3840x1080.png"
|
||||
hyprctl hyprpaper reload DP-4,"$WALLPAPER_FILE-1080x1920.png"
|
||||
hyprctl hyprpaper reload DP-3,"$WALLPAPER_FILE-3840x1080.png"
|
||||
hyprctl hyprpaper reload DP-1,"$WALLPAPER_FILE-1080x1920.png"
|
||||
'';
|
||||
}
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -221,20 +221,11 @@ with lib._elements; {
|
|||
systemd.services.lactd.wantedBy = ["multi-user.target"];
|
||||
|
||||
hardware = {
|
||||
nvidia = {
|
||||
modesetting.enable = true;
|
||||
powerManagement.enable = false;
|
||||
powerManagement.finegrained = false;
|
||||
open = true;
|
||||
nvidiaSettings = true;
|
||||
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||
amdgpu = {
|
||||
opencl.enable = true;
|
||||
overdrive.enable = true;
|
||||
};
|
||||
|
||||
# amdgpu = {
|
||||
# opencl.enable = true;
|
||||
# overdrive.enable = true;
|
||||
# };
|
||||
|
||||
bluetooth = {
|
||||
enable = true;
|
||||
powerOnBoot = true;
|
||||
|
|
|
|||
|
|
@ -13,9 +13,8 @@
|
|||
];
|
||||
|
||||
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod"];
|
||||
boot.initrd.kernelModules = ["uinput"]; # nvidia
|
||||
# boot.initrd.kernelModules = ["amdgpu"];
|
||||
# boot.kernelModules = ["kvm-amd" "uinput"];
|
||||
boot.initrd.kernelModules = ["amdgpu" "uinput"];
|
||||
boot.kernelModules = ["kvm-amd" "uinput"];
|
||||
boot.supportedFilesystems = ["ntfs"];
|
||||
|
||||
fileSystems."/mnt/games/ssd" = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue