nixos-config/modules/baseline.nix

45 lines
1.2 KiB
Nix
Raw Normal View History

2020-11-13 19:49:22 +00:00
{ config, pkgs, lib, ... }:
2020-09-18 13:54:09 +00:00
{
2020-09-24 05:45:48 +00:00
time.timeZone = "US/Eastern";
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" ];
};
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
2020-09-24 05:45:48 +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
2020-09-24 05:45:48 +00:00
hardware = {
cpu.amd.updateMicrocode = true;
cpu.intel.updateMicrocode = true;
};
2020-09-18 13:54:09 +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-11-13 19:49:22 +00:00
systemd.timers.nixosReport.timerConfig.RandomizedDelaySec = "55min";
systemd.services.nixosReport = {
startAt = "hourly";
serviceConfig.Type = "simple";
serviceConfig.ExecStart = lib.concatStringsSep " " [
"${pkgs.curl}/bin/curl --silent https://log.bck.me/nixos-report"
"-H 'hostname: ${config.networking.hostName}'"
"-H 'version: ${config.system.nixos.label}'"
"-H 'imports: ${lib.concatMapStringsSep " " toString (pkgs.callPackage /etc/nixos/configuration.nix { }).imports}'"
];
};
2020-09-18 13:54:09 +00:00
}