🔨 chore: initial commit

Signed-off-by: xtrm <oss@xtrm.me>
This commit is contained in:
xtrm
2025-02-19 13:05:06 +01:00
commit e9f538ed92
14 changed files with 343 additions and 0 deletions

28
flake.nix Normal file
View File

@ -0,0 +1,28 @@
{
description = "Inception of Things";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
systems.url = "github:nix-systems/x86_64-linux";
};
outputs =
{ self, nixpkgs, ... }@inputs:
let
inherit (self) outputs;
systems = (import inputs.systems);
forAllSystems = nixpkgs.lib.genAttrs systems;
in
{
devShells = forAllSystems (
system:
let
pkgs = import nixpkgs { inherit system; };
in
{
default = (import ./shell.nix) { inherit pkgs; };
}
);
};
}