summaryrefslogtreecommitdiffstats
path: root/makefu/1systems/filepimp.nix
blob: fb1a57552ab5e2a28d6f662f9163257d9997087a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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/default.nix
      ../2configs/fs/vm-single-partition.nix
      ../2configs/fs/single-partition-ext4.nix
      ../2configs/tinc-basic-retiolum.nix
    ];
  krebs.build.host = config.krebs.hosts.filepimp;

  # AMD N54L
  boot = {
    loader.grub.device = "/dev/sda";

    initrd.availableKernelModules = [
      "usb_storage"
      "ahci"
      "xhci_hcd"
      "ata_piix"
      "uhci_hcd"
      "ehci_pci"
    ];

    kernelModules = [ ];
    extraModulePackages = [ ];
  };

  hardware.enableAllFirmware = true;
  hardware.cpu.amd.updateMicrocode = true;

  networking.firewall.allowPing = true;
}