This commit is contained in:
mtgmonkey
2025-12-18 10:07:18 +01:00
commit c63ee0d945
10 changed files with 230 additions and 0 deletions

21
flake.nix Normal file
View File

@@ -0,0 +1,21 @@
{
inputs = {
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
};
outputs = {
nixpkgs,
self,
...
}: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.${system} = {
default = pkgs.mkShell {
packages = [
pkgs.cobalt
];
};
};
};
}