nixos/lorri: add package option
This commit is contained in:
parent
85afe9cbe9
commit
a31736120c
|
@ -15,6 +15,15 @@ in {
|
||||||
issued by the `lorri` command.
|
issued by the `lorri` command.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
package = lib.mkOption {
|
||||||
|
default = pkgs.lorri;
|
||||||
|
type = lib.types.package;
|
||||||
|
description = ''
|
||||||
|
The lorri package to use.
|
||||||
|
'';
|
||||||
|
defaultText = lib.literalExample "pkgs.lorri";
|
||||||
|
example = lib.literalExample "pkgs.lorri";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -34,7 +43,7 @@ in {
|
||||||
after = [ "lorri.socket" ];
|
after = [ "lorri.socket" ];
|
||||||
path = with pkgs; [ config.nix.package git gnutar gzip ];
|
path = with pkgs; [ config.nix.package git gnutar gzip ];
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
ExecStart = "${pkgs.lorri}/bin/lorri daemon";
|
ExecStart = "${cfg.package}/bin/lorri daemon";
|
||||||
PrivateTmp = true;
|
PrivateTmp = true;
|
||||||
ProtectSystem = "strict";
|
ProtectSystem = "strict";
|
||||||
ProtectHome = "read-only";
|
ProtectHome = "read-only";
|
||||||
|
@ -42,6 +51,6 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = [ pkgs.lorri ];
|
environment.systemPackages = [ cfg.package ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue