nixos-configuration/templates/dotnet/flake.nix
2025-03-21 02:00:29 +01:00

23 lines
406 B
Nix
Executable file

{
description = "Dotnet flake for dotnet development";
outputs = {
self,
nixpkgs,
}: let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
devShells.x86_64-linux = {
default = with pkgs;
mkShell {
buildInputs = with pkgs; [
dotnet-sdk_8
];
shellHook = ''
echo "dotnet shell"
'';
};
};
};
}