try out lxqt, not a fan
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
../graphical/games.nix
|
||||
../graphical/ime.nix
|
||||
../graphical/obs.nix
|
||||
#../graphical/lxqt.nix
|
||||
../graphical/plasma.nix
|
||||
../graphical/shared.nix
|
||||
../hardware/firmware.nix
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{ config, pkgs, ... }:
|
||||
{ config, pkgs, mainUser, ... }:
|
||||
|
||||
{
|
||||
services.xserver = {
|
||||
layout = "at";
|
||||
xkbVariant = "";
|
||||
layout = mainUser.layout;
|
||||
xkbVariant = mainUser.variant;
|
||||
enable = true;
|
||||
displayManager.gdm.enable = true;
|
||||
desktopManager.gnome.enable = true;
|
||||
|
||||
10
modules/graphical/lxqt.nix
Normal file
10
modules/graphical/lxqt.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ config, pkgs, ...}:
|
||||
{
|
||||
services.xserver = {
|
||||
xkb.layout = config.mainUser.layout;
|
||||
xkb.variant = config.mainUser.variant;
|
||||
enable = true;
|
||||
displayManager.sddm.enable = true;
|
||||
desktopManager.lxqt.enable = true;
|
||||
};
|
||||
}
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
{
|
||||
services.xserver = {
|
||||
xkb.layout = "at";
|
||||
xkb.variant = "";
|
||||
xkb.layout = config.mainUser.layout;
|
||||
xkb.variant = config.mainUser.variant;
|
||||
enable = true;
|
||||
displayManager.sddm.enable = true;
|
||||
#displayManager.sddm.wayland.enable = true;
|
||||
|
||||
@@ -54,12 +54,6 @@
|
||||
# Enable the X11 windowing system.
|
||||
services.xserver.enable = true;
|
||||
|
||||
# Configure keymap in X11
|
||||
services.xserver = {
|
||||
xkb.layout = lib.mkForce "de";
|
||||
xkb.variant = lib.mkForce "us";
|
||||
};
|
||||
|
||||
# Configure console keymap
|
||||
console.keyMap = "de";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user