2022-09-14 03:53:30 +00:00
|
|
|
{ pkgs, home-manager, unstable, ... }:
|
|
|
|
{
|
|
|
|
system.stateVersion = "22.05";
|
2022-10-04 19:13:47 +00:00
|
|
|
|
|
|
|
time = {
|
|
|
|
timeZone = "America/New_York";
|
|
|
|
|
|
|
|
hardwareClockInLocalTime = true;
|
|
|
|
};
|
|
|
|
|
2022-09-14 03:53:30 +00:00
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
|
|
|
|
nix.extraOptions = ''
|
|
|
|
experimental-features = nix-command flakes
|
|
|
|
'';
|
|
|
|
}
|