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