update flake lock, swap off of adb and nixfmt-rfc-style #173

Merged
ahuston-0 merged 4 commits from update_flake_lock_action into main 2026-01-16 18:31:10 -05:00
2 changed files with 6 additions and 2 deletions
Showing only changes of commit a52250876b - Show all commits

View File

@@ -17,4 +17,7 @@ import ../default.nix {
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILWG3cIBju6vzX6s8JlmGNJOiWY7pQ19bHvcqDADtWzv snowi@DESKTOP-EVIR8IH"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEMfC0IXl9sGx+9FjuYZT2OUfffGjciJIHWqZdEU1d3n alice@parthenon-7588"
];
groups = [
"adbusers"
];
}

View File

@@ -4,6 +4,7 @@
pkgs,
name,
publicKeys ? [ ],
groups ? [ ],
defaultShell ? "zsh",
}:
@@ -18,7 +19,6 @@
"wheel"
"media"
(lib.mkIf config.networking.networkmanager.enable "networkmanager")
(lib.mkIf config.programs.adb.enable "adbusers")
(lib.mkIf config.programs.wireshark.enable "wireshark")
(lib.mkIf config.virtualisation.docker.enable "docker")
(lib.mkIf (with config.services.locate; (enable && package == pkgs.plocate)) "plocate")
@@ -28,5 +28,6 @@
"plugdev"
"uaccess"
"ydotool"
];
]
++ groups;
}