NOflake/systems/NOcamp.nix
2024-02-24 02:50:02 -08:00

15 lines
267 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
arduino
firefox
qgis-ltr
qgroundcontrol
];
networking.hostName = "NObcer";
users.users.ssrov = {
isNormalUser = true;
extraGroups = ["dialout"];
hashedPassword = "";
};
}