nix-configs/nixos-modules/common/common.nix
2025-01-09 13:13:54 -05:00

11 lines
218 B
Nix

{
time.timeZone = "America/New_York";
i18n.defaultLocale = "en_US.UTF-8";
programs.vim = {
enable = true;
defaultEditor = true;
};
boot.kernel.sysctl = {
"net.core.default_qdisc" = "cake";
};
}