mirror of https://github.com/materusPL/Nixerus.git
55 lines
1.4 KiB
Nix
55 lines
1.4 KiB
Nix
|
{ config, pkgs, lib, inputs, materusFlake, materusPkgs, ... }:
|
||
|
let
|
||
|
westonSddm = pkgs.writeText "weston.ini"
|
||
|
''
|
||
|
[core]
|
||
|
xwayland=true
|
||
|
shell=fullscreen-shell.so
|
||
|
|
||
|
[keyboard]
|
||
|
keymap_layout=pl
|
||
|
|
||
|
[output]
|
||
|
name=DP-1
|
||
|
mode=1920x1080@240
|
||
|
|
||
|
[output]
|
||
|
name=DP-2
|
||
|
mode=off
|
||
|
|
||
|
[output]
|
||
|
name=HDMI-A-3
|
||
|
mode=1920x1080@144
|
||
|
''
|
||
|
;
|
||
|
in
|
||
|
{
|
||
|
services.xserver.displayManager.defaultSession = "plasmawayland";
|
||
|
services.xserver.displayManager.sddm.enable = true;
|
||
|
services.xserver.displayManager.sddm.settings = {
|
||
|
General = {
|
||
|
DisplayServer = "wayland";
|
||
|
};
|
||
|
Theme = {
|
||
|
CursorTheme = "breeze_cursors";
|
||
|
CursorSize = "24";
|
||
|
};
|
||
|
Wayland = {
|
||
|
#CompositorCommand = "${pkgs.weston}/bin/weston --drm-device=card0 --additional-devices=card1 -c ${westonSddm}";
|
||
|
};
|
||
|
};
|
||
|
services.xserver.desktopManager.plasma5.enable = true;
|
||
|
services.xserver.desktopManager.plasma5.phononBackend = "gstreamer";
|
||
|
services.xserver.desktopManager.plasma5.useQtScaling = true;
|
||
|
services.xserver.desktopManager.plasma5.runUsingSystemd = true;
|
||
|
programs.gnupg.agent.pinentryFlavor = "qt";
|
||
|
environment.plasma5.excludePackages = with pkgs; [ libsForQt5.kwallet libsForQt5.kwalletmanager libsForQt5.kwallet-pam ];
|
||
|
|
||
|
environment.variables = {
|
||
|
KWIN_DRM_NO_AMS = "1";
|
||
|
};
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
|
||
|
];
|
||
|
}
|