mirror of
https://github.com/nix-community/home-manager
synced 2024-11-16 08:09:45 +01:00
xsuspender: limit module to Linux
This commit is contained in:
parent
5b95fd0521
commit
d5bf68d77d
2 changed files with 2 additions and 1 deletions
|
@ -1094,6 +1094,7 @@ in
|
||||||
|
|
||||||
{
|
{
|
||||||
time = "2019-05-30T17:49:29+00:00";
|
time = "2019-05-30T17:49:29+00:00";
|
||||||
|
condition = hostPlatform.isLinux;
|
||||||
message = ''
|
message = ''
|
||||||
A new module is available: 'services.xsuspender'.
|
A new module is available: 'services.xsuspender'.
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -128,7 +128,7 @@ let
|
||||||
(loadModule ./services/xcape.nix { condition = hostPlatform.isLinux; })
|
(loadModule ./services/xcape.nix { condition = hostPlatform.isLinux; })
|
||||||
(loadModule ./services/xembed-sni-proxy.nix { condition = hostPlatform.isLinux; })
|
(loadModule ./services/xembed-sni-proxy.nix { condition = hostPlatform.isLinux; })
|
||||||
(loadModule ./services/xscreensaver.nix { })
|
(loadModule ./services/xscreensaver.nix { })
|
||||||
(loadModule ./services/xsuspender.nix { })
|
(loadModule ./services/xsuspender.nix { condition = hostPlatform.isLinux; })
|
||||||
(loadModule ./systemd.nix { })
|
(loadModule ./systemd.nix { })
|
||||||
(loadModule ./xcursor.nix { })
|
(loadModule ./xcursor.nix { })
|
||||||
(loadModule ./xresources.nix { })
|
(loadModule ./xresources.nix { })
|
||||||
|
|
Loading…
Reference in a new issue