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
62
nixos/modules/services/misc/leaps.nix
Normal file
62
nixos/modules/services/misc/leaps.nix
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.services.leaps;
|
||||
stateDir = "/var/lib/leaps/";
|
||||
in
|
||||
{
|
||||
options = {
|
||||
services.leaps = {
|
||||
enable = mkEnableOption "leaps";
|
||||
port = mkOption {
|
||||
type = types.port;
|
||||
default = 8080;
|
||||
description = "A port where leaps listens for incoming http requests";
|
||||
};
|
||||
address = mkOption {
|
||||
default = "";
|
||||
type = types.str;
|
||||
example = "127.0.0.1";
|
||||
description = "Hostname or IP-address to listen to. By default it will listen on all interfaces.";
|
||||
};
|
||||
path = mkOption {
|
||||
default = "/";
|
||||
type = types.path;
|
||||
description = "Subdirectory used for reverse proxy setups";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
users = {
|
||||
users.leaps = {
|
||||
uid = config.ids.uids.leaps;
|
||||
description = "Leaps server user";
|
||||
group = "leaps";
|
||||
home = stateDir;
|
||||
createHome = true;
|
||||
};
|
||||
|
||||
groups.leaps = {
|
||||
gid = config.ids.gids.leaps;
|
||||
};
|
||||
};
|
||||
|
||||
systemd.services.leaps = {
|
||||
description = "leaps service";
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
after = [ "network.target" ];
|
||||
|
||||
serviceConfig = {
|
||||
User = "leaps";
|
||||
Group = "leaps";
|
||||
Restart = "on-failure";
|
||||
WorkingDirectory = stateDir;
|
||||
PrivateTmp = true;
|
||||
ExecStart = "${pkgs.leaps}/bin/leaps -path ${toString cfg.path} -address ${cfg.address}:${toString cfg.port}";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue