Need to figure out boot.loader stuff

This commit is contained in:
System administrator 2024-09-13 15:37:26 +00:00
parent 8762b45865
commit 087e35f0f6
5 changed files with 101 additions and 3 deletions

View file

@ -1,3 +1,6 @@
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [ git vim ];
{pkgs ? import <nixpkgs> {}, ...}: {
default = pkgs.mkShell {
NIX_CONFIG = "extra-experimental-features = nix-command flakes";
nativeBuildInputs = with pkgs; [git neovim nix];
};
}