this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

use latest microbin for all the features

+9 -2
+9 -2
modules/nixos/microbin.nix
··· 1 - { config, lib, pkgs, ... }: 1 + { self, config, lib, pkgs, ... }: 2 2 3 3 with lib; 4 4 ··· 45 45 after = [ "remote-fs.target" "network.target" ]; 46 46 wantedBy = [ "multi-user.target" ]; 47 47 serviceConfig = { 48 - ExecStart = "${pkgs.microbin}/bin/microbin -- --port ${builtins.toString cfg.port} --public-path ${cfg.hostname} --editable --enable-burn-after --private --qr --title=sealight --highlightsyntax"; 48 + ExecStart = "${pkgs.unstable.microbin}/bin/microbin --public-path ${cfg.hostname} --qr --enable-burn-after --private"; 49 + Environment = [ 50 + "MICROBIN_EDITABLE=true" 51 + "MICROBIN_HIDE_FOOTER=true" 52 + "MICROBIN_HIGHLIGHTSYNTAX=true" 53 + "MICROBIN_PORT=${builtins.toString cfg.port}" 54 + "MICROBIN_TITLE=SealightBin" 55 + ]; 49 56 WorkingDirectory = dataFolder; 50 57 TimeoutStopSec = " 20 "; 51 58 KillMode = " process ";