2022-08-21 22:53:04 +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’).
|
|
|
|
|
{
|
2023-02-25 13:45:21 +00:00
|
|
|
|
config,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}: {
|
|
|
|
|
imports = [
|
|
|
|
|
# Include the results of the hardware scan.
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
./wireguard.nix
|
|
|
|
|
./builder.nix
|
|
|
|
|
];
|
2022-08-21 22:53:04 +00:00
|
|
|
|
|
|
|
|
|
# Set your time zone.
|
|
|
|
|
time.timeZone = "Europe/Berlin";
|
|
|
|
|
|
|
|
|
|
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
|
|
|
|
|
# Per-interface useDHCP will be mandatory in the future, so this generated config
|
|
|
|
|
# replicates the default behaviour.
|
|
|
|
|
networking.firewall = {
|
|
|
|
|
allowedUDPPorts = [
|
|
|
|
|
51820
|
|
|
|
|
51821
|
|
|
|
|
]; # Clients and peers can use the same port, see listenport
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
hardware.nitrokey.enable = true;
|
|
|
|
|
|
|
|
|
|
programs.gnupg.agent = {
|
|
|
|
|
enable = true;
|
|
|
|
|
enableSSHSupport = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
services.tlp = {
|
|
|
|
|
enable = true;
|
|
|
|
|
settings = {
|
|
|
|
|
CPU_SCALING_GOVERNOR_ON_AC = "performance";
|
2023-04-01 14:49:01 +00:00
|
|
|
|
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
|
2022-08-21 22:53:04 +00:00
|
|
|
|
|
|
|
|
|
# The following prevents the battery from charging fully to
|
|
|
|
|
# preserve lifetime. Run `tlp fullcharge` to temporarily force
|
|
|
|
|
# full charge.
|
|
|
|
|
# https://linrunner.de/tlp/faq/battery.html#how-to-choose-good-battery-charge-thresholds
|
|
|
|
|
START_CHARGE_THRESH_BAT0 = 40;
|
|
|
|
|
STOP_CHARGE_THRESH_BAT0 = 80;
|
|
|
|
|
|
|
|
|
|
# 100 being the maximum, limit the speed of my CPU to reduce
|
|
|
|
|
# heat and increase battery usage:
|
|
|
|
|
CPU_MAX_PERF_ON_AC = 100;
|
2023-04-01 14:49:01 +00:00
|
|
|
|
CPU_MAX_PERF_ON_BAT = 50;
|
2022-08-21 22:53:04 +00:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
|
|
|
|
system.stateVersion = "21.11"; # Did you read the comment?
|
|
|
|
|
}
|