knife-fight/flake.nix
Jacob VanDomelen ae221e29bc
Initial commit
2026-01-19 10:34:44 -08:00

37 lines
774 B
Nix

{
description = "A personal website configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
in
{
devShells.default = pkgs.mkShell {
name = "env";
buildInputs = with pkgs; [
helix
zellij
jujutsu
_1password-cli
gh
direnv
watch
leiningen
clojure
];
shellHook = ''
'';
};
}
);
}