Files
haskengl/flake.nix
mtgmonkey 23498c064a init
2025-11-26 01:34:43 +01:00

22 lines
420 B
Nix

{
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
};
outputs = {nixpkgs, ...}: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
packages.${system} = {
default = pkgs.callPackage ./package.nix {};
};
devShells.${system} = {
default = pkgs.mkShell {
nativeBuildInputs = [
];
shellHook = ''
'';
};
};
};
}