From 1ff39bc2cff34cb4aef22785d0d70bbc90efa3f5 Mon Sep 17 00:00:00 2001 From: Leonardo Santiago Date: Thu, 14 Mar 2024 16:02:18 -0300 Subject: first commit --- hosts/larissa/configuration.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 hosts/larissa/configuration.nix (limited to 'hosts/larissa/configuration.nix') diff --git a/hosts/larissa/configuration.nix b/hosts/larissa/configuration.nix new file mode 100644 index 0000000..b007ebd --- /dev/null +++ b/hosts/larissa/configuration.nix @@ -0,0 +1,21 @@ +{ config, pkgs, lib, ... }: +{ + imports = + [ + + ./hardware-configuration.nix + ]; + hardware = { + raspberry-pi."4".apply-overlays-dtmerge.enable = true; + deviceTree = { + enable = true; + filter = "*rpi-4-*.dtb"; + }; + }; + console.enable = false; + environment.systemPackages = with pkgs; [ + libraspberrypi + raspberrypi-eeprom + ]; + system.stateVersion = "23.11"; +} -- cgit v1.2.3