uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
101
nixos/modules/services/networking/icecream/scheduler.nix
Normal file
101
nixos/modules/services/networking/icecream/scheduler.nix
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.services.icecream.scheduler;
|
||||
in {
|
||||
|
||||
###### interface
|
||||
|
||||
options = {
|
||||
|
||||
services.icecream.scheduler = {
|
||||
enable = mkEnableOption "Icecream Scheduler";
|
||||
|
||||
netName = mkOption {
|
||||
type = types.nullOr types.str;
|
||||
default = null;
|
||||
description = ''
|
||||
Network name for the icecream scheduler.
|
||||
|
||||
Uses the default ICECREAM if null.
|
||||
'';
|
||||
};
|
||||
|
||||
port = mkOption {
|
||||
type = types.port;
|
||||
default = 8765;
|
||||
description = ''
|
||||
Server port to listen for icecream daemon requests.
|
||||
'';
|
||||
};
|
||||
|
||||
openFirewall = mkOption {
|
||||
type = types.bool;
|
||||
description = ''
|
||||
Whether to automatically open the daemon port in the firewall.
|
||||
'';
|
||||
};
|
||||
|
||||
openTelnet = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = ''
|
||||
Whether to open the telnet TCP port on 8766.
|
||||
'';
|
||||
};
|
||||
|
||||
persistentClientConnection = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = ''
|
||||
Whether to prevent clients from connecting to a better scheduler.
|
||||
'';
|
||||
};
|
||||
|
||||
package = mkOption {
|
||||
default = pkgs.icecream;
|
||||
defaultText = literalExpression "pkgs.icecream";
|
||||
type = types.package;
|
||||
description = "Icecream package to use.";
|
||||
};
|
||||
|
||||
extraArgs = mkOption {
|
||||
type = types.listOf types.str;
|
||||
default = [];
|
||||
description = "Additional command line parameters";
|
||||
example = [ "-v" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
###### implementation
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
networking.firewall.allowedTCPPorts = mkMerge [
|
||||
(mkIf cfg.openFirewall [ cfg.port ])
|
||||
(mkIf cfg.openTelnet [ 8766 ])
|
||||
];
|
||||
|
||||
systemd.services.icecc-scheduler = {
|
||||
description = "Icecream scheduling server";
|
||||
after = [ "network.target" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
|
||||
serviceConfig = {
|
||||
ExecStart = escapeShellArgs ([
|
||||
"${getBin cfg.package}/bin/icecc-scheduler"
|
||||
"-p" (toString cfg.port)
|
||||
]
|
||||
++ optionals (cfg.netName != null) [ "-n" (toString cfg.netName) ]
|
||||
++ optional cfg.persistentClientConnection "-r"
|
||||
++ cfg.extraArgs);
|
||||
|
||||
DynamicUser = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
meta.maintainers = with lib.maintainers; [ emantor ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue