2023-07-07 23:11:21 -05:00
|
|
|
{ lib, config, pkgs, ... }:
|
2023-07-07 16:55:42 -05:00
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[
|
2023-08-01 15:46:57 -05:00
|
|
|
../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
|
|
|
];
|
|
|
|
|
2023-07-07 23:09:54 -05:00
|
|
|
system.copySystemConfiguration = true;
|
|
|
|
system.stateVersion = "23.05"; # don't change this, lol
|
2023-07-07 16:55:42 -05:00
|
|
|
}
|