ada: upstream

Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
This commit is contained in:
s0me1newithhand7s 2026-03-25 18:47:19 +03:00
parent c5f949506a
commit bcb7f2dcb0
18 changed files with 45 additions and 79 deletions

View file

@ -1,16 +1,20 @@
{config, ...}: {
{
config,
lib,
...
}: {
environment = {
variables = {
AMD_VULKAN_ICD = "AMDVLK";
HOSTNAME = config.networking.hostName;
QT_QPA_PLATFORM = "wayland";
QT_QPA_PLATFORMTHEME = lib.mkForce "xdgdesktopportal";
TDESKTOP_USE_GTK_FILE_DIALOG = 1;
SDL_VIDEODRIVER = "wayland";
CLUTTER_BACKEND = "wayland";
GDK_BACKEND = "wayland";
NIXPKGS_ALLOW_UNFREE = "1";
NIXPKGS_ALLOW_INSECURE = "1";
NIXOS_OZONE_WL = "1";
GRIMBLAST_HIDE_CURSOR = "0";
NIXPKGS_ALLOW_UNFREE = 1;
NIXPKGS_ALLOW_INSECURE = 1;
NIXOS_OZONE_WL = 1;
GRIMBLAST_HIDE_CURSOR = 1;
TERM = "xterm-256color";
};
};