nixos-dotfiles/common.nix

17 lines
283 B
Nix
Raw Normal View History

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