1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-21 05:58:31 +02:00

xsuspender: limit module to Linux

This commit is contained in:
Robert Helgesson 2019-05-30 23:25:30 +02:00
parent 5b95fd0521
commit d5bf68d77d
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
2 changed files with 2 additions and 1 deletions

View File

@ -1094,6 +1094,7 @@ in
{
time = "2019-05-30T17:49:29+00:00";
condition = hostPlatform.isLinux;
message = ''
A new module is available: 'services.xsuspender'.
'';

View File

@ -128,7 +128,7 @@ let
(loadModule ./services/xcape.nix { condition = hostPlatform.isLinux; })
(loadModule ./services/xembed-sni-proxy.nix { condition = hostPlatform.isLinux; })
(loadModule ./services/xscreensaver.nix { })
(loadModule ./services/xsuspender.nix { })
(loadModule ./services/xsuspender.nix { condition = hostPlatform.isLinux; })
(loadModule ./systemd.nix { })
(loadModule ./xcursor.nix { })
(loadModule ./xresources.nix { })