nixos/kuro/configuration.nix

33 lines
911 B
Nix
Raw Normal View History

2023-01-15 18:56:16 +01:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
2023-06-12 19:32:36 +02:00
# and in the NixOS manual (accessible by running `nixos-help`).
2023-01-15 18:56:16 +01:00
{ config, pkgs, ... }:
{
imports =
[
# Include the results of the hardware scan.
./hardware-configuration.nix
# Shared config of all machines
2023-06-12 19:32:36 +02:00
/data/nixos/common.nix
2023-01-15 18:56:16 +01:00
];
2023-06-12 19:32:36 +02:00
# host name
2023-01-15 18:56:16 +01:00
networking.hostName = "kuro";
2023-06-12 19:32:36 +02:00
# main network interface via systemd-networkd
networking.useDHCP = false;
systemd.network.enable = true;
systemd.network.networks."10-lan" = {
matchConfig.Name = "enp2s0";
networkConfig.DHCP = "yes";
linkConfig.RequiredForOnline = "routable";
};
# amd graphics
hardware.opengl.extraPackages = with pkgs; [ amdvlk rocm-opencl-icd rocm-opencl-runtime ];
hardware.opengl.extraPackages32 = with pkgs.pkgsi686Linux; [ amdvlk ];
2023-01-15 18:56:16 +01:00
}