37 lines
1.2 KiB
Nix
37 lines
1.2 KiB
Nix
# Edit this configuration file to define what should be installed on
|
|
# your system. Help is available in the configuration.nix(5) man page, on
|
|
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[ # Include the results of the hardware scan.
|
|
<nixos-hardware/raspberry-pi/4>
|
|
../common.nix
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
hardware = {
|
|
raspberry-pi."4".apply-overlays-dtmerge.enable = true;
|
|
deviceTree = {
|
|
enable = true;
|
|
filter = "*rpi-4-*.dtb";
|
|
};
|
|
};
|
|
# Use the extlinux boot loader. (NixOS wants to enable GRUB by default)
|
|
boot.loader.grub.enable = false;
|
|
# Enables the generation of /boot/extlinux/extlinux.conf
|
|
boot.loader.generic-extlinux-compatible.enable = true;
|
|
|
|
# networking.hostName = "pinix"; # Define your hostname.
|
|
# Pick only one of the below networking options.
|
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
|
# networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
|
# time.timeZone = "Europe/Berlin";
|
|
|
|
system.stateVersion = "24.05"; # Did you read the comment?
|
|
|
|
}
|
|
|