website/flake.nix

19 lines
419 B
Nix
Raw Normal View History

2023-09-16 09:16:56 +00:00
{
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!
2023-09-16 19:15:58 +00:00
This is the personal website of Paul-Nicolas Madelaine.
2023-09-16 09:16:56 +00:00
'';
});
}