set up a default config

This commit is contained in:
insects 2024-08-03 22:19:00 +02:00
commit 92c57d8825
11 changed files with 479 additions and 0 deletions

19
shell.nix Normal file
View file

@ -0,0 +1,19 @@
# Shell for bootstrapping flake-enabled nix and other tooling
{ pkgs ? let
lock = (builtins.fromJSON (builtins.readFile ./flake.lock)).nodes.nixpkgs.locked;
nixpkgs = fetchTarball {
url = "https://github.com/nixos/nixpkgs/archive/${lock.rev}.tar.gz";
sha256 = lock.narHash;
};
in
import nixpkgs { overlays = [ ]; }
, ...
}: {
default = pkgs.mkShell {
NIX_CONFIG = "extra-experimental-features = nix-command flakes repl-flake";
nativeBuildInputs = with pkgs; [
home-manager
git
];
};
}