- quartz.nix: NixOS module for Quartz static site hosting - flake.nix: Flake wrapper exposing nixosModules.quartz 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
257 B
Nix
10 lines
257 B
Nix
{
|
|
description = "Quartz static site NixOS module";
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
nixosModules.quartz = import ./quartz.nix;
|
|
nixosModules.default = self.nixosModules.quartz;
|
|
};
|
|
}
|