nordic2025/flake.nix
2025-04-04 15:51:46 +02:00

26 lines
506 B
Nix

{
description = "Dotnet flake for dotnet development";
outputs = {
self,
nixpkgs,
}: let
# pkgs = nixpkgs.legacyPackages.x86_64-linux;
pkgs = import nixpkgs {
system = "x86_64-linux";
config.allowUnfree = true;
};
in {
formatter.x86_64-linux = pkgs.alejandra;
devShells.x86_64-linux = {
default = with pkgs;
mkShell {
buildInputs = with pkgs; [
unityhub
vscode
];
};
};
};
}