diff options
author | tdback <tyler@tdback.net> | 2024-12-14 20:41:08 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2024-12-15 10:55:01 -0500 |
commit | 0bb075d9c8ea99a6f18d440af6d03c84f17fd23b (patch) | |
tree | 719fa87402e536ce3575ea0d9e180381a34ff031 /flake.nix |
initial commit of site
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..857f4fe --- /dev/null +++ b/flake.nix @@ -0,0 +1,19 @@ +{ + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + flake-utils.url = "github:numtide/flake-utils"; + }; + + outputs = { ... }@inputs: + inputs.flake-utils.lib.eachDefaultSystem (system: + let + pkgs = import inputs.nixpkgs { inherit system; }; + in + { + devShells.default = pkgs.mkShell { + buildInputs = with pkgs; [ + hugo + ]; + }; + }); +} |