nix-book/source/new-flake/bash-flake/flake-3.nix
Amy de Buitléir 374030a540 initial commit
2025-10-12 16:00:44 +01:00

24 lines
437 B
Nix

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