Files
inception-of-things/flake.nix
xtrm e9f538ed92 🔨 chore: initial commit
Signed-off-by: xtrm <oss@xtrm.me>
2025-02-19 13:05:06 +01:00

29 lines
591 B
Nix

{
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; };
}
);
};
}