mirror of
https://github.com/nix-community/home-manager
synced 2024-12-04 17:09:47 +01:00
15 lines
302 B
Nix
15 lines
302 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.hypridle.enable = true;
|
||
|
|
||
|
test.stubs.hypridle = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
config=home-files/.config/hypr/hypridle.conf
|
||
|
clientServiceFile=home-files/.config/systemd/user/hypridle.service
|
||
|
assertPathNotExists $config
|
||
|
assertFileExists $clientServiceFile
|
||
|
'';
|
||
|
}
|