NixOS-Config/modules/system/default.nix

19 lines
311 B
Nix
Raw Normal View History

{ ... }:
{
imports = [
./accounts
./devices
./options
./programs
./services
./settings
../../overlays
../../variables
];
2024-10-15 02:40:43 -04:00
time.timeZone = "America/Toronto";
programs.nano.enable = false;
hardware.enableRedistributableFirmware = true;
system.stateVersion = "24.05";
}