mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
58 lines
1.4 KiB
Nix
58 lines
1.4 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" ];
|
|
kernelParams = [
|
|
"amdgpu.gpu_recovery=1"
|
|
"nohibernate"
|
|
"panic=99"
|
|
"sysctl.vm.overcommit_memory=1"
|
|
];
|
|
};
|
|
|
|
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"
|
|
'';
|
|
};
|
|
};
|
|
}
|