blob: d974306708cbf5a9b5af69dd775ae62ff70dd360 (
plain) (
tree)
|
|
# 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, lib, secrets, hostname, inputs, user, ... }: {
imports = [
# Include the results of the hardware scan.
./hardware.nix
];
services = {
# Configure keymap in X11
xserver.layout = "gb";
fstrim.enable = true;
logind.extraConfig = ''
# don’t shutdown when power button is short-pressed
HandlePowerKey=ignore
'';
};
# Pick only one of the below networking options.
networking = {
wireless = {
enable = true; # Enables wireless support via wpa_supplicant.
networks = secrets.wifi;
};
# networkmanager.enable = true; # Easiest to use and most distros use this by default.
# Configure network proxy if necessary
# proxy.default = "http://user:password@proxy:port/";
# proxy.noProxy = "127.0.0.1,localhost,internal.domain";
};
environment.systemPackages = with pkgs; [
xf86_input_cmt #chromebook touchpad drivers
];
nix = {
distributedBuilds = true;
# optional, useful when the builder has a faster internet connection than yours
extraOptions = "builders-use-substitutes = true";
buildMachines = [{
hostName = "builder";
system = "x86_64-linux";
# if the builder supports building for multiple architectures,
# replace the previous line by, e.g.,
# systems = ["x86_64-linux" "aarch64-linux"];
maxJobs = 4;
speedFactor = 2;
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
mandatoryFeatures = [ ];
}];
};
}
|