summary refs log tree commit diff
path: root/machines/fourmi/default.nix
blob: 780838db021a923cdd0ab33e80321c093e19aeef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ pkgs, ... }:

{
  imports = [
    ../../modules/common.nix

    ./hardware.nix
    ./devices.nix
  ];

  foundation.monitoring = {
    client.enable = false;
  };

  # extra packages for dealing with the device
  # hardware.
  environment.systemPackages = with pkgs; [
    libraspberrypi
    raspberrypi-eeprom
  ];

  system.stateVersion = "24.11";
}