nixos/mini/configuration.nix

27 lines
688 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-09 19:25:10 +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
/data/nixos/common.nix
2023-01-15 18:56:16 +01:00
];
2023-06-10 19:19:56 +02:00
# amd graphics
hardware.opengl.extraPackages = with pkgs; [ amdvlk rocm-opencl-icd rocm-opencl-runtime ];
2023-10-24 21:47:13 +02:00
2024-05-29 21:07:09 +02:00
# our hostname and an ID for ZFS
2023-10-24 21:47:13 +02:00
networking.hostName = "mini";
2024-05-29 21:07:09 +02:00
networking.hostId = "e925ccfb";
2024-04-29 18:24:44 +02:00
2024-05-29 21:07:09 +02:00
# classic dhcpcd
networking.networkmanager.enable = false;
2023-01-15 18:56:16 +01:00
}