dobutterfliescry.net/flake.nix

31 lines
656 B
Nix

# Template: https://nixos-and-flakes.thiscute.world/development/intro
{
description = "Dev Shell for dobutterfliescry.net";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
};
outputs = {nixpkgs, ...}: let
system = "x86_64-linux";
in {
devShells."${system}".default = let
pkgs = import nixpkgs {
inherit system;
};
in
pkgs.mkShell {
packages = with pkgs; [
# dev local server
simple-http-server
# css baking
sass
# image baking (from .svg)
imagemagick
];
shell = "${pkgs.bash}/bin/bash";
};
};
}