quartz-module/flake.nix
padreug dc94f9d5bc Initial commit: Quartz NixOS module as flake
- 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>
2026-01-15 12:31:12 +01:00

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;
};
}