NixOS-Config/modules/system/default.nix

19 lines
311 B
Nix

{ ... }:
{
imports = [
./accounts
./devices
./options
./programs
./services
./settings
../../overlays
../../variables
];
time.timeZone = "America/Toronto";
programs.nano.enable = false;
hardware.enableRedistributableFirmware = true;
system.stateVersion = "24.05";
}