Skip to content

Commit

Permalink
fix(nixos): Add user to dialout group for Arduino connectivity
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Jul 18, 2024
1 parent 3831b40 commit 5b2ce5d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion home-manager/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ in {
signal-desktop
qbittorrent
vlc
cura
# cura
r2modman
];
file."${config.home.homeDirectory}/.xprofile".text = ''
Expand Down
8 changes: 7 additions & 1 deletion nixos-modules/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,13 @@
hashedPassword =
"$y$j9T$L.RrmE3CRSB.lQayiw2ZN/$vA4XkSR13yL016t3HaZ11uCN/sCmXqBcuUcSBxMjiPD";
home = "/home/mat";
extraGroups = [ "wheel" "networkmanager" "oci" "podman" ];
extraGroups = [
"wheel"
"networkmanager"
"oci"
"podman"
"dialout" # to connect to arduino
];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDsT6GLG7sY8YKX7JM+jqS3EAti3YMzwHKWViveqkZvu"
];
Expand Down

0 comments on commit 5b2ce5d

Please sign in to comment.