nixos-dotfiles/common.nix

17 lines
283 B
Nix
Executable File

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