mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +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
2 changed files with 5 additions and 1 deletions
|
@ -623,7 +623,9 @@ in
|
||||||
];
|
];
|
||||||
|
|
||||||
services.xserver.displayManager.sessionPackages = [ pkgs.plasma5Packages.plasma-bigscreen ];
|
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;
|
enable = true;
|
||||||
user = "alice";
|
user = "alice";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
users.users.alice.extraGroups = ["uinput"];
|
||||||
};
|
};
|
||||||
|
|
||||||
testScript = { nodes, ... }: let
|
testScript = { nodes, ... }: let
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue