initial commit
This commit is contained in:
commit
a338049802
2 changed files with 75 additions and 0 deletions
17
flake.nix
Normal file
17
flake.nix
Normal 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!
|
||||
'';
|
||||
});
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue