nixos/plasma-bigscreen: enable uinput correctly

This is required for plasma-remotecontrollers to actually work.
Make sure to also add your user to the `uinput` group.
This commit is contained in:
K900 2022-10-12 20:28:53 +03:00
parent eb7e411506
commit 37a64594bd
2 changed files with 5 additions and 1 deletions

View file

@ -623,7 +623,9 @@ in
];
services.xserver.displayManager.sessionPackages = [ pkgs.plasma5Packages.plasma-bigscreen ];
services.udev.packages = [ pkgs.plasma5Packages.plasma-remotecontrollers ];
# required for plasma-remotecontrollers to work correctly
hardware.uinput.enable = true;
})
];
}

View file

@ -18,6 +18,8 @@ import ./make-test-python.nix ({ pkgs, ...} :
enable = true;
user = "alice";
};
users.users.alice.extraGroups = ["uinput"];
};
testScript = { nodes, ... }: let