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