os/modules/arduino/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
227 B
Nix
Raw Normal View History

{
lib,
config,
pkgs,
...
}:
with lib; let
psCfg = config.pub-solar;
in {
2024-01-06 09:46:10 +00:00
users.users."${psCfg.user.name}" = {
extraGroups = ["dialout"];
packages = with pkgs; [
arduino
arduino-cli
];
};
}