moved udev package for platformio to extra
This commit is contained in:
parent
31ee5532b2
commit
6ed515aa77
|
@ -22,6 +22,7 @@ in
|
|||
./extra/dvd.nix
|
||||
./extra/bluray.nix
|
||||
./extra/platformio.nix
|
||||
./extra/yubikey.nix
|
||||
];
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
|
@ -236,8 +237,6 @@ in
|
|||
# Enable the OpenSSH daemon.
|
||||
# services.openssh.enable = true;
|
||||
|
||||
services.udev.packages = [ pkgs.platformio ];
|
||||
|
||||
# Open ports in the firewall.
|
||||
# networking.firewall.allowedTCPPorts = [ ... ];
|
||||
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{ pkgs, config, ... }: {
|
||||
|
||||
services.udev.packages = [ pkgs.platformio ];
|
||||
|
||||
# embedded board development
|
||||
environment.systemPackages = with pkgs; [
|
||||
platformio-core # toolchain manager for various microcontrollers
|
||||
|
|
Loading…
Reference in New Issue