2024-03-16 17:18:20 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2024-01-09 23:48:38 +01:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../../common
|
2024-05-21 22:40:26 +02:00
|
|
|
../../common/pulseaudio.nix
|
2024-01-09 23:48:38 +01:00
|
|
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
./storage.nix
|
|
|
|
./swap.nix
|
|
|
|
# FIXME: move this to common, conditional enabling
|
|
|
|
./secureboot.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
hardware.trackpoint = {
|
|
|
|
enable = true;
|
|
|
|
sensitivity = 180;
|
|
|
|
speed = 180;
|
|
|
|
};
|
|
|
|
|
|
|
|
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?
|
|
|
|
}
|