mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
rename libinput options
This commit is contained in:
parent
2a211813fd
commit
58382a6458
3 changed files with 3 additions and 3 deletions
|
@ -48,8 +48,8 @@
|
||||||
earlyoom.enable = true;
|
earlyoom.enable = true;
|
||||||
logind.lidSwitch = "ignore";
|
logind.lidSwitch = "ignore";
|
||||||
openssh.enable = true;
|
openssh.enable = true;
|
||||||
|
libinput.mouse.middleEmulation = false;
|
||||||
xserver = {
|
xserver = {
|
||||||
libinput.mouse.middleEmulation = false;
|
|
||||||
deviceSection = ''
|
deviceSection = ''
|
||||||
Option "VariableRefresh" "true"
|
Option "VariableRefresh" "true"
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -7,9 +7,9 @@ in
|
||||||
|
|
||||||
config = lib.mkIf cfg {
|
config = lib.mkIf cfg {
|
||||||
|
|
||||||
|
services.libinput.enable = true;
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
libinput.enable = true;
|
|
||||||
displayManager.gdm.enable = true;
|
displayManager.gdm.enable = true;
|
||||||
displayManager.gdm.autoSuspend = false;
|
displayManager.gdm.autoSuspend = false;
|
||||||
desktopManager.gnome.enable = true;
|
desktopManager.gnome.enable = true;
|
||||||
|
|
|
@ -6,9 +6,9 @@ in
|
||||||
options.sconfig.plasma = lib.mkEnableOption "Enable Plasma Desktop";
|
options.sconfig.plasma = lib.mkEnableOption "Enable Plasma Desktop";
|
||||||
|
|
||||||
config = lib.mkIf cfg {
|
config = lib.mkIf cfg {
|
||||||
|
services.libinput.enable = true;
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
libinput.enable = true;
|
|
||||||
displayManager.sddm.enable = true;
|
displayManager.sddm.enable = true;
|
||||||
desktopManager.plasma5.enable = true;
|
desktopManager.plasma5.enable = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue