1
0
Fork 0

Add RaspberryPi specific programs

This commit is contained in:
Daniel Kempkens 2022-08-24 00:05:38 +02:00
parent 09cc324062
commit 5e0a5d9470
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
2 changed files with 8 additions and 0 deletions

View file

@ -9,6 +9,7 @@ in
{
imports = [
../../hardware/hosts/adsb-antenna.nix
../nixos/raspberry.nix
../nixos/ssh.nix
../nixos/git.nix

View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
libraspberrypi
];
}