dobutterfliescry.net/flake.nix

32 lines
656 B
Nix
Raw Normal View History

2025-07-28 23:14:35 +10:00
# 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; [
2025-08-06 17:11:45 +10:00
# dev local server
2025-07-28 23:14:35 +10:00
simple-http-server
2025-08-06 17:11:45 +10:00
# css baking
sass
# image baking (from .svg)
2025-07-28 23:14:35 +10:00
imagemagick
];
shell = "${pkgs.bash}/bin/bash";
};
};
}