math-project/flake.nix
mtgmonkey f15932fc62 init
2025-06-11 17:55:32 -04:00

12 lines
300 B
Nix
Executable file

{
inputs = {
nixpkgs.url = "nixpkgs/nixos-25.05";
};
outputs = {nixpkgs, ...}: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
packages.${system}.default = pkgs.callPackage ./package.nix {};
nixosModules.${system}.default = ./module.nix;
};
}