dot_testing/modules/bootstrap.nix

15 lines
217 B
Nix
Raw Normal View History

2023-12-20 15:19:01 -06:00
{ config, pkgs, ... }:
{
2023-12-28 00:20:13 -06:00
imports = [
./hardware-configuration.nix
];
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" ];
}