rust-elaborator/flake.nix
mtgmonkey 28a9a97bf5 init
2025-06-20 09:47:35 -04:00

12 lines
308 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 {};
# nixosModules.${system}.default = ./module.nix;
};
}