blob: 024f56d5c0fd45bf9301da83dcc75ced610e916a (
plain)
1
2
3
4
5
6
7
8
9
|
{
description = "Quentin Aristote's personal information.";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in { formatWith = markup: import ./default.nix { inherit markup pkgs; }; });
}
|