Merge pull request 'Add Arduino module' (#98) from feature/arduino into main

Reviewed-on: https://git.b12f.io/pub-solar/os/pulls/98
Reviewed-by: hensoko <hensoko@noreply.example.org>
This commit is contained in:
Benjamin Bädorf 2022-08-12 22:44:28 +00:00
commit ebfd447037
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, config, pkgs, ... }:
with lib;
let
psCfg = config.pub-solar;
cfg = config.pub-solar.devops;
in
{
options.pub-solar.arduino = {
enable = mkEnableOption "Life with home automation";
};
config = mkIf cfg.enable {
users.users = pkgs.lib.setAttrByPath [ psCfg.user.name ] {
extraGroups = [ "dialout" ];
};
home-manager = with pkgs; pkgs.lib.setAttrByPath [ "users" psCfg.user.name ] {
home.packages = [
arduino
arduino-cli
];
};
};
}

View file

@ -15,6 +15,8 @@ channels: final: prev: {
deploy-rs
tdesktop
arduino
arduino-cli
;