flake at git root

This commit is contained in:
shobu
2025-12-23 18:07:29 +01:00
parent 9eae228f85
commit c0cfafbe2c
2 changed files with 0 additions and 0 deletions

18
flake.nix Normal file
View File

@@ -0,0 +1,18 @@
{
inputs = {
utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
};
outputs = { self, nixpkgs, utils }: utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
presenterm
];
};
}
);
}