2021-07-18 19:44:17 +00:00
|
|
|
{ config, pkgs, ... }:
|
2020-09-18 13:54:09 +00:00
|
|
|
{
|
2020-09-24 05:45:48 +00:00
|
|
|
time.timeZone = "US/Eastern";
|
2021-11-07 01:09:53 +00:00
|
|
|
|
|
|
|
# the default is all languages. this just shrinks the install size
|
2021-04-14 14:24:51 +00:00
|
|
|
i18n.supportedLocales = [ "en_US.UTF-8/UTF-8" ];
|
2020-09-18 13:54:09 +00:00
|
|
|
|
2020-09-24 05:45:48 +00:00
|
|
|
boot = {
|
|
|
|
zfs.forceImportAll = false;
|
|
|
|
zfs.forceImportRoot = false;
|
|
|
|
kernelParams = [ "amdgpu.gpu_recovery=1" "panic=30" ];
|
2021-11-07 01:09:53 +00:00
|
|
|
initrd.availableKernelModules = [ "nvme" ]; # is this still needed?
|
2020-09-24 05:45:48 +00:00
|
|
|
};
|
2020-09-18 13:54:09 +00:00
|
|
|
|
2020-09-24 05:45:48 +00:00
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
environment.variables.NIXPKGS_ALLOW_UNFREE = "1";
|
2020-09-18 13:54:09 +00:00
|
|
|
|
2021-10-03 21:29:58 +00:00
|
|
|
security.sudo.extraConfig = "Defaults lecture=never";
|
|
|
|
|
2021-11-09 17:20:34 +00:00
|
|
|
systemd.tmpfiles.rules = [ "e /nix/var/log - - - 30d" ];
|
2020-09-18 13:54:09 +00:00
|
|
|
|
2020-11-13 20:49:36 +00:00
|
|
|
zramSwap.enable = true;
|
2020-09-18 13:54:09 +00:00
|
|
|
|
2021-04-04 22:25:13 +00:00
|
|
|
networking.hostId = builtins.substring 0 8 (builtins.hashString "md5" config.networking.hostName);
|
2021-11-07 01:09:53 +00:00
|
|
|
|
|
|
|
# lower ipv4 DNS priority for networkmanager
|
2021-08-12 19:45:31 +00:00
|
|
|
networking.networkmanager.extraConfig = ''
|
|
|
|
[connection]
|
|
|
|
ipv4.dns-priority=101
|
|
|
|
'';
|
2021-04-04 22:25:13 +00:00
|
|
|
|
2021-04-29 16:00:42 +00:00
|
|
|
nix = {
|
|
|
|
daemonNiceLevel = 19;
|
|
|
|
daemonIONiceLevel = 7;
|
2021-11-10 01:42:53 +00:00
|
|
|
package = pkgs.nix_2_4;
|
2021-05-28 20:16:28 +00:00
|
|
|
extraOptions = ''
|
|
|
|
experimental-features = nix-command flakes
|
|
|
|
'';
|
2021-04-29 16:00:42 +00:00
|
|
|
};
|
|
|
|
|
2021-07-25 22:04:05 +00:00
|
|
|
services.xserver = {
|
|
|
|
libinput.mouse.middleEmulation = false;
|
|
|
|
deviceSection = ''
|
|
|
|
Option "VariableRefresh" "true"
|
|
|
|
'';
|
|
|
|
};
|
2021-06-09 23:39:28 +00:00
|
|
|
|
2020-09-24 05:45:48 +00:00
|
|
|
services = {
|
|
|
|
earlyoom.enable = true;
|
|
|
|
avahi = {
|
|
|
|
enable = true;
|
|
|
|
nssmdns = true;
|
|
|
|
publish.enable = true;
|
|
|
|
publish.addresses = true;
|
2020-09-18 13:54:09 +00:00
|
|
|
};
|
2020-09-24 05:45:48 +00:00
|
|
|
};
|
2020-09-18 13:54:09 +00:00
|
|
|
}
|