Adding initial stuff.

This commit is contained in:
jay
2025-06-28 23:17:56 +00:00
parent 6d95881880
commit 552b300149
6 changed files with 431 additions and 0 deletions

37
flake.nix Normal file
View File

@@ -0,0 +1,37 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
nixverse = {
url = "github:hgl/nixverse";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
self,
nixpkgs,
nixverse,
...
}:
nixverse.load self {
nixverse = {
inheritLib = true;
};
devShells = nixverse.lib.forAllSystems (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
default = pkgs.mkShellNoCC {
packages = with pkgs; [
nil
nixfmt-rfc-style
nixverse.packages.${system}.nixverse
];
};
}
);
};
}