nixconfigs/hosts/thinknix/default.nix

37 lines
807 B
Nix

{
config,
lib,
pkgs,
...
}:
{
imports = [
../../common
../../common/pulseaudio.nix
./hardware-configuration.nix
./storage.nix
./swap.nix
];
hardware.trackpoint = {
enable = true;
sensitivity = 180;
speed = 180;
};
boot.extraModprobeConfig = "options thinkpad_acpi fan_control=1"; # enable fan control via echo to /proc/acpi/ibm/fan
schmittlauch = {
guestUser.enable = true;
secureboot.enable = true;
};
networking.hostName = "thinknix";
# This value determines the NixOS release with which your system is to be
# compatible, in order to avoid breaking some software such as database
# servers. You should change this only after NixOS release notes say you
# should.
system.stateVersion = "18.09"; # Did you read the comment?
}