This commit is contained in:
mtgmonkey 2025-06-20 09:47:35 -04:00
commit 28a9a97bf5
6 changed files with 69 additions and 0 deletions

12
flake.nix Normal file
View file

@ -0,0 +1,12 @@
{
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;
};
}