mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 23:07:36 +03:00
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:
parent
eb7e411506
commit
37a64594bd
@ -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;
|
||||
})
|
||||
];
|
||||
}
|
||||
|
@ -18,6 +18,8 @@ import ./make-test-python.nix ({ pkgs, ...} :
|
||||
enable = true;
|
||||
user = "alice";
|
||||
};
|
||||
|
||||
users.users.alice.extraGroups = ["uinput"];
|
||||
};
|
||||
|
||||
testScript = { nodes, ... }: let
|
||||
|
Loading…
Reference in New Issue
Block a user