dotfiles/nixos/system.nix
Benjamin Palko d277850804 re-organize nix configs
nvim update
2024-07-13 23:56:56 -04:00

20 lines
496 B
Nix

{ ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
nixpkgs.config.allowUnfree = true;
nix.settings = {
experimental-features = "nix-command flakes";
auto-optimise-store = true;
};
# Select internationalisation properties.
# i18n.defaultLocale = "en_US.UTF-8";
# console = {
# font = "Lat2-Terminus16";
# keyMap = "us";
# useXkbConfig = true; # use xkb.options in tty.
# };
time.timeZone = "Canada/Eastern";
}