dot_testing/modules/bootstrap.nix

11 lines
164 B
Nix
Raw Permalink Normal View History

2023-12-20 15:19:01 -06:00
{ config, pkgs, ... }:
{
2023-12-20 20:37:40 -06:00
environment.systemPackages = with pkgs; [
git
neovim
];
2023-12-20 15:19:01 -06:00
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}