install serial utilities, add to group

This commit is contained in:
NullBite 2025-05-05 19:55:17 -04:00
parent b2ab765800
commit 1cd8ecb093
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A
3 changed files with 8 additions and 1 deletions

View File

@ -15,6 +15,9 @@ in {
anki anki
zen-browser-bin zen-browser-bin
# uhh idk where else to put this
qflipper
# mapping/GIS # mapping/GIS
qgis qgis
josm josm

View File

@ -175,6 +175,10 @@ in {
zoxide zoxide
asciinema asciinema
mtr mtr
screen
minicom
picocom
] ]
++ builtins.map (x: lib.hiPrio x) [ ++ builtins.map (x: lib.hiPrio x) [
# terminfo (just the ones i'm likely to use) # terminfo (just the ones i'm likely to use)

View File

@ -15,7 +15,7 @@ in {
uid = 1000; uid = 1000;
group = "nullbite"; group = "nullbite";
isNormalUser = true; isNormalUser = true;
extraGroups = ["wheel"] ++ lib.optional config.nixfiles.packageSets.fun.enable "input"; extraGroups = [ "wheel" "dialout" ] ++ lib.optional config.nixfiles.packageSets.fun.enable "input";
packages = with pkgs; [ packages = with pkgs; [
keychain keychain
]; ];