Files
net/flake.nix
James Walker 48338fa795
Some checks failed
continuous-integration/drone Build is failing
🔒️ annual upgrade
- also bumped tailwind to 4.x
- updated postcss to match
2025-11-19 11:51:40 -05:00

40 lines
827 B
Nix

{
description = "walkah.net";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
flake-utils.url = "github:numtide/flake-utils";
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
};
outputs =
{ nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
name = "net";
buildInputs = with pkgs; [
libyaml
nodejs
ruby
];
shellHook = ''
mkdir -p .gems
export GEM_HOME=$PWD/.gems
export GEM_PATH=$GEM_HOME
export PATH=$PWD/bin:$GEM_HOME/bin:$PATH
'';
};
}
);
}