initial commit

This commit is contained in:
Paul-Nicolas Madelaine 2023-09-16 11:16:56 +02:00
commit a338049802
2 changed files with 75 additions and 0 deletions

17
flake.nix Normal file
View file

@ -0,0 +1,17 @@
{
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!
'';
});
}