2015-11-06 10:01:49 +00:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
|
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[ # Include the results of the hardware scan.
|
|
|
|
|
../2configs/fs/single-partition-ext4.nix
|
|
|
|
|
../2configs/tinc-basic-retiolum.nix
|
2016-01-03 05:08:01 +00:00
|
|
|
|
../2configs/smart-monitor.nix
|
2015-11-06 10:01:49 +00:00
|
|
|
|
];
|
|
|
|
|
krebs.build.host = config.krebs.hosts.filepimp;
|
2016-01-03 05:08:01 +00:00
|
|
|
|
services.smartd.devices = [
|
|
|
|
|
{ device = "/dev/sda"; }
|
|
|
|
|
{ device = "/dev/sdb"; }
|
|
|
|
|
{ device = "/dev/sdc"; }
|
|
|
|
|
{ device = "/dev/sdd"; }
|
|
|
|
|
{ device = "/dev/sde"; }
|
|
|
|
|
];
|
2015-11-06 10:01:49 +00:00
|
|
|
|
# AMD N54L
|
|
|
|
|
boot = {
|
2016-01-03 05:08:01 +00:00
|
|
|
|
loader.grub.device = "/dev/sde";
|
2015-11-06 10:01:49 +00:00
|
|
|
|
|
|
|
|
|
initrd.availableKernelModules = [
|
|
|
|
|
"ahci"
|
2016-01-02 20:22:00 +00:00
|
|
|
|
"ohci_pci"
|
2015-11-06 10:01:49 +00:00
|
|
|
|
"ehci_pci"
|
2016-01-02 20:22:00 +00:00
|
|
|
|
"pata_atiixp"
|
|
|
|
|
"usb_storage"
|
|
|
|
|
"usbhid"
|
2015-11-06 10:01:49 +00:00
|
|
|
|
];
|
|
|
|
|
|
2016-01-02 20:22:00 +00:00
|
|
|
|
kernelModules = [ "kvm-amd" ];
|
2015-11-06 10:01:49 +00:00
|
|
|
|
extraModulePackages = [ ];
|
|
|
|
|
};
|
|
|
|
|
hardware.enableAllFirmware = true;
|
|
|
|
|
hardware.cpu.amd.updateMicrocode = true;
|
|
|
|
|
|
2016-01-03 05:08:01 +00:00
|
|
|
|
zramSwap.enable = true;
|
|
|
|
|
zramSwap.numDevices = 2;
|
2015-11-06 10:01:49 +00:00
|
|
|
|
}
|