mirror of
https://github.com/nix-community/home-manager
synced 2024-12-24 02:39:48 +01:00
getmail: restrict platform to Linux
Need to limit this module to Linux since it uses systemd.
This commit is contained in:
parent
68fe8623ad
commit
8f7cd53204
2 changed files with 2 additions and 1 deletions
|
@ -1125,6 +1125,7 @@ in
|
|||
|
||||
{
|
||||
time = "2019-06-19T17:49:29+00:00";
|
||||
condition = hostPlatform.isLinux;
|
||||
message = ''
|
||||
A new module is available: `services.getmail`.
|
||||
'';
|
||||
|
|
|
@ -51,7 +51,7 @@ let
|
|||
(loadModule ./programs/firefox.nix { })
|
||||
(loadModule ./programs/fish.nix { })
|
||||
(loadModule ./programs/fzf.nix { })
|
||||
(loadModule ./programs/getmail.nix { })
|
||||
(loadModule ./programs/getmail.nix { condition = hostPlatform.isLinux; })
|
||||
(loadModule ./programs/git.nix { })
|
||||
(loadModule ./programs/gnome-terminal.nix { })
|
||||
(loadModule ./programs/go.nix { })
|
||||
|
|
Loading…
Reference in a new issue