This commit is contained in:
mtgmonkey 2025-06-11 17:55:32 -04:00
commit f15932fc62
10 changed files with 303 additions and 0 deletions

12
flake.nix Executable file
View file

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