feat: inital commit

This commit is contained in:
2025-07-13 19:44:07 -04:00
commit 9acd92634e
3 changed files with 100 additions and 0 deletions

28
flake.nix Normal file
View File

@@ -0,0 +1,28 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
{
lib = {
users = (import "./users.nix");
};
}
// flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells.default = pkgs.mkShell {
buildInputs = [ pkgs.nixd ];
};
}
);
}