dot_testing/modules/bootstrap.nix

13 lines
213 B
Nix
Raw 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
2024-06-20 20:03:50 -05:00
(pkgs.callPackage ../builds/rebuild.nix {})
2023-12-20 20:37:40 -06:00
];
2023-12-20 15:19:01 -06:00
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}