summary refs log tree commit diff
path: root/nixos/tests/xss-lock.nix
Commit message (Collapse)AuthorAge
* nixos/tests/xss-lock.nix: get rid of `with lib`Anderson Torres2023-05-12
|
* treewide: remove ma27 from the maintainer-list of a few packagesMaximilian Bosch2021-08-27
| | | | | | | | | | | | | These are all packages that I stopped using and hence just create noise in my inbox for each change affecting them and let's face it, while I still enjoy contributing to nixpkgs, it doesn't really make sense to be listed there if I can't do much anyways. Each of these packages can be taken over by someone or removed if people think that's reasonable. Of course, if other maintainers face issues, I can answer some questions if needed & possible.
* treewide: simplify pkgs.stdenv.lib -> pkgs.libDominik Xaver Hörl2021-01-10
| | | | | The library does not depend on stdenv, that `stdenv` exposes `lib` is an artifact of the ancient origins of nixpkgs.
* nixos/display-managers/auto: removeworldofpeace2020-01-29
| | | | | | | | This module allows root autoLogin, so we would break that for users, but they shouldn't be using it anyways. This gives the impression like auto is some special display manager, when it's just lightdm and special pam rules to allow root autoLogin. It was created for NixOS's testing so I believe this is where it belongs.
* nixos/xss-lock: port test to python test-driverMaximilian Bosch2019-11-26
| | | | | Also refactored the test script to have different subtests for different configurations.
* nixos/xss-lock: add testcase for `lockerCommand` with several CLI options.Maximilian Bosch2019-05-12
|
* nixos/xss-lock: specify a default lockerJörg Thalheim2019-01-05
| | | | | | Having a default locker is less error-prone and more convenient. Incorrect values might leave the machine vulnerable since there is no fallback.
* nixos/xsslock: wait until `pgrep xlock` succeeds (#40810)Maximilian Bosch2018-05-20
| | | | | | | Please refer to the conversation in the original PR (#40619) for further reference: https://github.com/NixOS/nixpkgs/pull/40619#issuecomment-390437845 It takes some time after the standby to trigger the locker which might break the test on Hydra.
* nixos/xss-lock: add module (#40619)Maximilian Bosch2018-05-18
`xsslock` (which was originally packaged in 6cb1d1aaaf02a72329bedf9c6960e54fea6f5c6e) is a simple screensaver which connects a given screen locker (e.g. `i3lock`) with `logind`. Whenever `loginctl lock-sessions` is invoked the locker will be used to lock the screen. This works with its power management features (e.g. `lid switch`) as well, so the PC can be locked automatically when the lid is closed. The module can be used like this: ``` { services.xserver.enable = true; programs.xss-lock.enable = true; programs.xss-lock.lockerCommand = "i3lock"; } ```