This commit is contained in:
Amy de Buitléir 2025-09-04 17:32:23 +01:00
parent 07ea40871f
commit e712d753fd
4 changed files with 185 additions and 72 deletions

View file

@ -1,20 +0,0 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells = rec {
default = pkgs.mkShell {
packages = [ pkgs.cowsay ];
};
};
}
);
}