comfycamp/flake.nix

22 lines
377 B
Nix
Raw Normal View History

2024-02-23 19:31:29 +05:00
{
description = "comfycamp.space";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-23.11";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.${system}.default = pkgs.mkShell {
buildInputs = [
pkgs.nodejs_20
pkgs.imagemagick
];
};
};
}