Skip to content

Instantly share code, notes, and snippets.

@hmenke
hmenke / cgit.nix
Last active January 21, 2021 21:32
cgit for nginx on NixOS
{ config, lib, pkgs, ... }:
with lib;
let
globalConfig = config;
settingsFormat = {
type = with lib.types; let
value = oneOf [ int str ] // {
description = "INI-like atom (int or string)";
};