Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

vert-nix

Packages vert-sh for Nix(OS).

Available packages

Usage

# flake.nix
inputs = {
  vert-nix = {
    url = "git+https://git.bartoostveen.nl/bart/vert-nix.git"; # optionally use `release` branch here
    inputs.nixpkgs.follows = "nixpkgs";
  };
};

NixOS

{ config, inputs, ... }:

{
  imports = [ inputs.vert-nix.nixosModules.default ];
  services.vert = {
    enable = true;
    hostName = "${config.networking.hostName}.${config.networking.domain}";
    nginx.enable = true;
  };
  networking = {
    hostName = "vert";
    domain = "local";
  };
  system.stateVersion = "26.11";
}

License

This project is licensed under the unlicense, go crazy.