60 lines
1.3 KiB
Nix
60 lines
1.3 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
let
|
|
westonSddm = pkgs.writeText "weston.ini"
|
|
''
|
|
[core]
|
|
xwayland=true
|
|
shell=fullscreen-shell.so
|
|
|
|
[keyboard]
|
|
keymap_layout=pl
|
|
|
|
[output]
|
|
name=DP-3
|
|
mode=1920x1080@240
|
|
|
|
[output]
|
|
name=DP-2
|
|
mode=off
|
|
|
|
[output]
|
|
name=HDMI-A-3
|
|
mode=off
|
|
''
|
|
;
|
|
in
|
|
{
|
|
services.xserver.displayManager.defaultSession = "plasma";
|
|
services.xserver.displayManager.sddm.enable = true;
|
|
services.xserver.displayManager.sddm.settings = {
|
|
General = {
|
|
#DisplayServer = "wayland";
|
|
InputMethod="";
|
|
};
|
|
Theme = {
|
|
CursorTheme = "breeze_cursors";
|
|
CursorSize = "24";
|
|
};
|
|
Wayland = {
|
|
#CompositorCommand = "${pkgs.weston}/bin/weston -c ${westonSddm}";
|
|
|
|
};
|
|
};
|
|
services.xserver.desktopManager.plasma6.enable = true;
|
|
services.xserver.desktopManager.plasma6.enableQt5Integration = true;
|
|
programs.gnupg.agent.pinentryFlavor = "gnome3";
|
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [ kwallet kwalletmanager kwallet-pam ];
|
|
|
|
environment.variables = {
|
|
# Old fix for black cursor on amdgpu, seems to work fine now
|
|
#KWIN_DRM_NO_AMS = "1";
|
|
|
|
#Fix fo amdgpu crashes
|
|
KWIN_DRM_USE_MODIFIERS="0";
|
|
KWIN_DRM_NO_DIRECT_SCANOUT="1";
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
];
|
|
}
|