nix-book/source/new-flake/bash-flake/flake.nix
2025-10-13 19:57:02 +01:00

21 lines
386 B
Nix

{
description = "what does the cow say";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
};
outputs = { self, nixpkgs }: {
devShells = {
x86_64-linux.default =
let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in
pkgs.mkShell {
packages = [ pkgs.cowsay ];
};
}; # devShells
}; # outputs
}