mirror of
https://github.com/librephoenix/nixos-config
synced 2025-10-18 17:44:06 +05:30
some fixes
This commit is contained in:
parent
eac2cd88ea
commit
a4e8b952c6
2 changed files with 19 additions and 1 deletions
|
@ -41,7 +41,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
home.sessionVariables = lib.mkIf config.userSettings.hyprland.enable {
|
home.sessionVariables = lib.mkIf config.userSettings.hyprland.enable {
|
||||||
AQ_DRM_DEVICES = lib.mkForce "/dev/dri/card0:/dev/dri/card1";
|
AQ_DRM_DEVICES = lib.mkForce "/dev/dri/card1:/dev/dri/card2";
|
||||||
};
|
};
|
||||||
|
|
||||||
wayland.windowManager.hyprland = lib.mkIf config.userSettings.hyprland.enable {
|
wayland.windowManager.hyprland = lib.mkIf config.userSettings.hyprland.enable {
|
||||||
|
|
|
@ -20,6 +20,24 @@
|
||||||
download-buffer-size = 500000000;
|
download-buffer-size = 500000000;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
programs.nix-ld = {
|
||||||
|
enable = true;
|
||||||
|
#Include libstdc++ in the nix-ld profile
|
||||||
|
libraries = [
|
||||||
|
pkgs.stdenv.cc.cc
|
||||||
|
pkgs.zlib
|
||||||
|
pkgs.fuse3
|
||||||
|
pkgs.icu
|
||||||
|
pkgs.nss
|
||||||
|
pkgs.openssl
|
||||||
|
pkgs.curl
|
||||||
|
pkgs.expat
|
||||||
|
pkgs.xorg.libX11
|
||||||
|
pkgs.vulkan-headers
|
||||||
|
pkgs.vulkan-loader
|
||||||
|
pkgs.vulkan-tools
|
||||||
|
];
|
||||||
|
};
|
||||||
system.stateVersion = "22.11";
|
system.stateVersion = "22.11";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue