2021-09-29 13:06:28 +02: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’).
|
2022-07-15 13:11:54 +02:00
|
|
|
|
{ lib
|
|
|
|
|
, config
|
|
|
|
|
, pkgs
|
|
|
|
|
, ...
|
|
|
|
|
}: {
|
2021-10-03 12:29:45 +02:00
|
|
|
|
imports = [
|
|
|
|
|
# Include the results of the hardware scan.
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
];
|
2021-09-29 13:06:28 +02:00
|
|
|
|
|
2022-08-20 14:13:51 +02:00
|
|
|
|
# KERNEL
|
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
|
|
2021-09-29 13:06:28 +02:00
|
|
|
|
# BOOT
|
|
|
|
|
boot = {
|
2021-10-24 17:13:02 +02:00
|
|
|
|
supportedFilesystems = [ "btrfs" "ntfs" ];
|
2021-09-29 13:06:28 +02:00
|
|
|
|
loader = {
|
|
|
|
|
grub = {
|
|
|
|
|
enable = true;
|
|
|
|
|
version = 2;
|
|
|
|
|
device = "nodev";
|
|
|
|
|
efiSupport = true;
|
|
|
|
|
useOSProber = true;
|
|
|
|
|
};
|
|
|
|
|
efi.canTouchEfiVariables = true;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# NETWORKING
|
|
|
|
|
networking = {
|
|
|
|
|
hostName = "nixos-desktop";
|
2022-01-09 14:15:39 +01:00
|
|
|
|
defaultGateway = "192.168.0.1";
|
|
|
|
|
nameservers = [ "192.168.0.4" ];
|
2021-09-29 13:06:28 +02:00
|
|
|
|
useDHCP = false;
|
2022-02-11 22:21:04 +01:00
|
|
|
|
interfaces.enp42s0 = {
|
2022-07-15 13:11:54 +02:00
|
|
|
|
ipv4.addresses = [
|
|
|
|
|
{
|
|
|
|
|
address = "192.168.0.14";
|
|
|
|
|
prefixLength = 24;
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
ipv6.addresses = [
|
|
|
|
|
{
|
|
|
|
|
address = "fe80::60fb:ffc:df6f:e29e";
|
|
|
|
|
prefixLength = 64;
|
|
|
|
|
}
|
|
|
|
|
];
|
2022-02-11 22:21:04 +01:00
|
|
|
|
};
|
2022-02-09 14:12:15 +01:00
|
|
|
|
networkmanager = {
|
|
|
|
|
enable = true;
|
2022-02-11 22:21:04 +01:00
|
|
|
|
dns = "none";
|
2022-02-09 14:12:15 +01:00
|
|
|
|
};
|
2022-02-11 22:21:04 +01:00
|
|
|
|
dhcpcd.extraConfig = ''
|
|
|
|
|
nohook resolv.conf
|
|
|
|
|
'';
|
2021-09-29 13:06:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
2021-10-03 12:29:45 +02:00
|
|
|
|
services.xserver.videoDrivers = [ "nvidia" ];
|
2022-08-20 14:13:51 +02:00
|
|
|
|
hardware.opengl = {
|
|
|
|
|
enable = true;
|
|
|
|
|
driSupport32Bit = true;
|
|
|
|
|
};
|
|
|
|
|
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.legacy_470;
|
2021-12-04 11:45:55 +01:00
|
|
|
|
services.xserver.xrandrHeads = [
|
|
|
|
|
{ output = "HDMI-1"; }
|
|
|
|
|
{
|
|
|
|
|
output = "HDMI-0";
|
|
|
|
|
primary = true;
|
|
|
|
|
}
|
|
|
|
|
];
|
2021-10-03 12:29:45 +02:00
|
|
|
|
|
2022-03-30 10:56:41 +02:00
|
|
|
|
console.keyMap = "de";
|
|
|
|
|
|
2021-09-29 13:06:28 +02:00
|
|
|
|
# Powersaving
|
|
|
|
|
services.tlp.enable = true;
|
|
|
|
|
powerManagement.enable = true;
|
|
|
|
|
|
2022-07-15 10:55:11 +02:00
|
|
|
|
# sensors
|
|
|
|
|
hardware.enableAllFirmware = true;
|
|
|
|
|
environment.systemPackages = with pkgs; [ lm_sensors ];
|
|
|
|
|
boot.kernelModules = [ "lm92" "drivetemp" ];
|
|
|
|
|
|
2022-08-20 14:17:16 +02:00
|
|
|
|
hardware.bluetooth.enable = true;
|
|
|
|
|
|
2021-09-29 13:06:28 +02: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).
|
2022-08-20 14:14:21 +02:00
|
|
|
|
system.stateVersion = "22.05"; # Did you read the comment?
|
2021-09-29 13:06:28 +02:00
|
|
|
|
}
|