mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-09 15:39:44 +00:00
change env vars and add xfce4
This commit is contained in:
parent
6a19220fae
commit
3a05e0b63f
4 changed files with 8 additions and 4 deletions
|
@ -29,7 +29,7 @@
|
|||
home.sessionVariables = {
|
||||
NIXPKGS_ALLOW_UNFREE = 1;
|
||||
NIXOS_OZONE_WL = 1;
|
||||
#QT_QPA_PLATFORM = "wayland";
|
||||
QT_QPA_PLATFORM = "xcb";
|
||||
};
|
||||
|
||||
# The home.packages option allows you to install Nix packages into your
|
||||
|
|
|
@ -12,7 +12,7 @@ _: {
|
|||
GIT_ASKPASS = "/home/user/.nix-profile/bin/ksshaskpass";
|
||||
|
||||
WAYLAND_DISPLAY = "wayland-1";
|
||||
QT_QPA_PLATFORM = "wayland";
|
||||
QT_QPA_PLATFORM = "xcb";
|
||||
QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
|
||||
SDL_VIDEODRIVER = "wayland";
|
||||
CLUTTER_BACKEND = "wayland";
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
displayManager = {
|
||||
sddm = {
|
||||
enable = true;
|
||||
wayland.enable = true;
|
||||
wayland.enable = false;
|
||||
};
|
||||
};
|
||||
xserver = {
|
||||
|
@ -29,6 +29,10 @@
|
|||
};
|
||||
};
|
||||
desktopManager.plasma6.enable = true;
|
||||
xserver.desktopManager.xfce = {
|
||||
enable = true;
|
||||
enableXfwm = true;
|
||||
};
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
dunst
|
||||
|
|
|
@ -9,7 +9,7 @@ env = GLFW_IM_MODULE, ibus
|
|||
env = INPUT_METHOD, fcitx
|
||||
|
||||
# Themes
|
||||
env = QT_QPA_PLATFORM, wayland
|
||||
env = QT_QPA_PLATFORM, xcb
|
||||
env = QT_QPA_PLATFORMTHEME, qt5ct
|
||||
# env = QT_STYLE_OVERRIDE,kvantum
|
||||
env = WLR_NO_HARDWARE_CURSORS, 1
|
||||
|
|
Loading…
Reference in a new issue