37 lines
774 B
Nix
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 = ''
|
|
'';
|
|
};
|
|
}
|
|
);
|
|
}
|