1
0
forked from extern/nix-config
donovanglover-nix-config/common/default.nix
Donovan Glover 3ff05f0117
Simplify common imports
This shouldn't be an issue since I'd rather import all of these at once
than selectively import them.
2023-05-25 09:10:37 -04:00

39 lines
622 B
Nix

{ pkgs, ... }:
{
imports = [
./user
];
# locale
i18n.defaultLocale = "en_US.UTF-8";
i18n.supportedLocales =
[ "en_US.UTF-8/UTF-8" "ja_JP.UTF-8/UTF-8" "fr_FR.UTF-8/UTF-8" ];
# nix
nix = {
package = pkgs.nixFlakes;
settings = {
experimental-features = [ "nix-command" "flakes" ];
};
};
# home-manager
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
sharedModules = [{
home.stateVersion = "22.11";
}];
};
# systemd
systemd.extraConfig = ''
DefaultTimeoutStopSec=10s
'';
# timezone
time.timeZone = "America/New_York";
}