This commit is contained in:
kittywitch 2024-04-07 18:18:11 +00:00
parent 12c16c2a45
commit 482574b6e8
3 changed files with 88 additions and 0 deletions

19
flake.nix Normal file
View file

@ -0,0 +1,19 @@
{
description = "dork.dev, using the cobalt ssg";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
self,
flake-utils,
nixpkgs,
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.default = import ./shell.nix {inherit pkgs;};
});
}