mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-06 07:36:23 +01:00
28 lines
975 B
Nix
28 lines
975 B
Nix
{ inputs, config, pkgs, ... }:
|
|
{
|
|
environment.systemPackages = [ inputs.microbin-fork.defaultPackage."x86_64-linux" ];
|
|
systemd.services.microbin = {
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
environment = {
|
|
#MICROBIN_AUTH_USERNAME = "jade";
|
|
MICROBIN_HASH_IDS = "";
|
|
MICROBIN_EDITABLE = "";
|
|
MICROBIN_PRIVATE = "";
|
|
MICROBIN_HIGHLIGHTSYNTAX = "";
|
|
MICROBIN_PUBLIC_PATH = "https://s10e.de";
|
|
MICROBIN_QR = "";
|
|
MICROBIN_URL_EP = "u";
|
|
MICROBIN_RAW_EP = "r";
|
|
MICROBIN_PASTA_EP = "p";
|
|
};
|
|
script = "${inputs.microbin-fork.defaultPackage."x86_64-linux"}/bin/microbin";
|
|
#scriptArgs = "--auth-password ${builtins.readFile ../secret-data/mb-pass} --auth-username jade --editable --hash-ids --no-listing --highlightsyntax --public-path https://s10e.de --qr";
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
RootDirectory="/";
|
|
WorkingDirectory = "/microbin";
|
|
};
|
|
};
|
|
}
|