Skip to content

Commit bbcb42b

Browse files
committed
[Change] Replace the Nix shell with a Nix flake
1 parent 789e86b commit bbcb42b

File tree

3 files changed

+45
-9
lines changed

3 files changed

+45
-9
lines changed

flake.lock

Lines changed: 27 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
description = "TML modding setup";
3+
4+
inputs = {
5+
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
6+
};
7+
8+
outputs = { self, nixpkgs }: let
9+
system = "x86_64-linux";
10+
pkgs = import nixpkgs { inherit system; };
11+
in {
12+
devShells.${system}.default = pkgs.mkShell {
13+
packages = [
14+
pkgs.dotnet-sdk
15+
];
16+
};
17+
};
18+
}

shell.nix

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)