15 lines
267 B
Nix
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 = "";
|
|
};
|
|
}
|