dot_testing/configuration.nix

33 lines
550 B
Nix
Raw Normal View History

{ lib, config, pkgs, ... }:
2023-07-07 16:55:42 -05:00
{
imports =
[
./hardware-configuration.nix # include the results of the hardware scan
2023-07-07 16:55:42 -05:00
];
2023-07-07 23:44:40 -05:00
networking.networkmanager.enable = true;
2023-07-07 16:55:42 -05:00
time.timeZone = "America/Chicago";
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "us";
};
environment.systemPackages = with pkgs; [
neovim
curl
htop
git
2023-07-07 23:44:40 -05:00
tree
dig
htop
2023-07-09 17:21:27 -05:00
gnumake
2023-07-07 16:55:42 -05:00
];
system.copySystemConfiguration = true;
system.stateVersion = "23.05"; # don't change this, lol
2023-07-07 16:55:42 -05:00
}