19 lines
419 B
Nix
19 lines
419 B
Nix
{
|
|
|
|
inputs = {
|
|
nixpkgs.url = "nixpkgs";
|
|
flake-utils.url = "flake-utils";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils, }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let pkgs = import nixpkgs { inherit system; };
|
|
in {
|
|
packages.default = pkgs.writeTextDir "index.html" ''
|
|
Hello world!
|
|
This is the personal website of Paul-Nicolas Madelaine.
|
|
'';
|
|
});
|
|
|
|
}
|