nixos-config/modules/baseline.nix
2023-03-27 11:17:08 -04:00

57 lines
1.3 KiB
Nix

{ config, lib, pkgs, ... }:
{
time.timeZone = "America/New_York";
# the default is all languages. this just shrinks the install size
i18n.supportedLocales = [ "en_US.UTF-8/UTF-8" ];
# makes system evaluation much faster
documentation.nixos.enable = false;
boot = {
zfs.forceImportRoot = false;
initrd.availableKernelModules = [ "nvme" ]; # is this still needed?
kernelParams = [
"amdgpu.gpu_recovery=1"
"nohibernate"
"panic=99"
];
};
nixpkgs.config.allowUnfree = true;
security.sudo.extraConfig = "Defaults lecture=never";
systemd.tmpfiles.rules = [ "e /nix/var/log - - - 30d" ];
zramSwap.enable = lib.mkDefault true;
networking.hostId = builtins.substring 0 8 (builtins.hashString "md5" config.networking.hostName);
networking.usePredictableInterfaceNames = lib.mkDefault false;
nix = {
nixPath = [ ];
daemonCPUSchedPolicy = "idle";
extraOptions = ''
experimental-features = nix-command flakes
'';
gc = {
automatic = true;
persistent = false;
randomizedDelaySec = "40min";
options = "--delete-older-than 30d";
};
};
services = {
logind.lidSwitch = "ignore";
openssh.enable = true;
xserver = {
libinput.mouse.middleEmulation = false;
deviceSection = ''
Option "VariableRefresh" "true"
'';
};
};
}