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.