feat: Initial commit.

This commit is contained in:
Spencer Brower
2024-01-08 13:35:14 -05:00
commit 555073c428
7 changed files with 114 additions and 0 deletions

23
flake.nix Normal file
View File

@@ -0,0 +1,23 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }:
let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in
{
devShells.x86_64-linux.default = pkgs.mkShell {
packages = with pkgs; [
ffmpeg
sbcl
nushellFull
];
};
};
}